From e2d67db5d4ccccee53f1b0c9cc410afce628e253 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Thu, 4 Aug 2016 09:18:26 +0100 Subject: [PATCH] Fix missing semicolon --- lib/base-apis.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base-apis.js b/lib/base-apis.js index 3714eed8f..e92513ed0 100644 --- a/lib/base-apis.js +++ b/lib/base-apis.js @@ -143,7 +143,7 @@ MatrixBaseApis.prototype.deactivateAccount = function(auth, callback) { if (auth) { body = { auth: auth, - } + }; } return this._http.authedRequestWithPrefix( callback, "POST", '/account/deactivate', undefined, body, httpApi.PREFIX_UNSTABLE