Skip to content

Commit 772f883

Browse files
committed
Use post for requests to Bikeshed
Fixes #148. Fixes #149.
1 parent 6f4f6e7 commit 772f883

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mixins/fetchable.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ mustache.escape = v => v;
1313
module.exports = (superclass) => class extends superclass {
1414
getUrl(options) {
1515
if (this.pr.processor == "bikeshed") {
16-
return this.getBikeshedUrl(options);
16+
return { method: "post", url: this.getBikeshedUrl(options) };
1717
}
1818

1919
if (this.pr.processor == "respec") {

0 commit comments

Comments
 (0)