From 3d2ff45e9f783d604ab58bb6505a5cdd0c7a3ff5 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Thu, 31 Mar 2022 23:46:14 -0700 Subject: [PATCH] typo --- src/js/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/client.js b/src/js/client.js index 2d31c491a..6daa53c93 100644 --- a/src/js/client.js +++ b/src/js/client.js @@ -2968,7 +2968,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout }; Client.prototype.getAppstoreUserToken = function (callback) { - get('/api/v1/appstore/web_token', {}, null, function (error, data, status) { + get('/api/v1/appstore/web_token', null, function (error, data, status) { if (error) return callback(error); if (status !== 200) return callback(new ClientError(status, data));