This commit is contained in:
Girish Ramakrishnan
2022-03-31 23:46:14 -07:00
parent 79fbdb0691
commit 3d2ff45e9f

View File

@@ -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));