-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #1268 #1305
Fixes #1268 #1305
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great thanks
.map { res => | ||
val resJson = js.JSON.parse(res) | ||
val branch = resJson.asInstanceOf[Repo].default_branch | ||
fixImages(branch, organization, repository) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I deployed it to https://index-dev.scala-lang.org/scalacenter/bloop but it does not work.
It seems there is a problem here because it tries again to parse the default_branch to JSON.
.map { res => | |
val resJson = js.JSON.parse(res) | |
val branch = resJson.asInstanceOf[Repo].default_branch | |
fixImages(branch, organization, repository) | |
} | |
.map(branch => fixImages(branch, organization, repository)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmmm weird. I tried it locally.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah no. My bad. Let me see.
No description provided.