Skip to content

Commit

Permalink
Use post for requests to Bikeshed (#150)
Browse files Browse the repository at this point in the history
Fixes #148. Fixes #149.
  • Loading branch information
tobie committed Feb 3, 2024
1 parent 6f4f6e7 commit 42ae2b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mixins/fetchable.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ mustache.escape = v => v;
module.exports = (superclass) => class extends superclass {
getUrl(options) {
if (this.pr.processor == "bikeshed") {
return this.getBikeshedUrl(options);
return { method: "post", url: this.getBikeshedUrl(options) };
}

if (this.pr.processor == "respec") {
Expand Down

0 comments on commit 42ae2b6

Please sign in to comment.