remove method uppercasing

This commit is contained in:
Will Nelson
2018-06-09 09:18:10 -07:00
parent 62108dc1c1
commit 23c34ccded

View File

@@ -10,7 +10,7 @@ class APIRequest {
constructor(rest, method, path, options) {
this.rest = rest;
this.client = rest.client;
this.method = method.toUpperCase();
this.method = method;
this.route = options.route;
this.options = options;