From 23c34ccded0a37170a9762ac68feee9a0d6b6306 Mon Sep 17 00:00:00 2001 From: Will Nelson Date: Sat, 9 Jun 2018 09:18:10 -0700 Subject: [PATCH] remove method uppercasing --- src/rest/APIRequest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rest/APIRequest.js b/src/rest/APIRequest.js index e2fa86f31..ec8375dd1 100644 --- a/src/rest/APIRequest.js +++ b/src/rest/APIRequest.js @@ -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;