diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2019-05-18 13:29:28 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2019-05-18 13:29:28 -0400 |
| commit | 12c8516a9f8151f22588d4a0fb42530b85265c6f (patch) | |
| tree | 21f0b92bfaec752c8f8c496c5285389f6a6efcce /www/js/MontageHistoryCtrl.js | |
| parent | 41e8490439876ff4a33e4b3c5f4695b750c283d2 (diff) | |
#817 various intercept fixes
Diffstat (limited to 'www/js/MontageHistoryCtrl.js')
| -rw-r--r-- | www/js/MontageHistoryCtrl.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/js/MontageHistoryCtrl.js b/www/js/MontageHistoryCtrl.js index 1f42e98e..1833ec80 100644 --- a/www/js/MontageHistoryCtrl.js +++ b/www/js/MontageHistoryCtrl.js @@ -540,10 +540,10 @@ angular.module('zmApp.controllers').controller('zmApp.MontageHistoryCtrl', ['$sc }; if ($rootScope.authSession.indexOf("&auth=")!=-1) { - data_payload['auth']=$rootScope.authSession.match(/&auth=([^&]*)/)[1]; + data_payload.auth=$rootScope.authSession.match(/&auth=([^&]*)/)[1]; } else if ($rootScope.authSession.indexOf("&token=")!=-1) { - data_payload['token']=$rootScope.authSession.match(/&token=([^&]*)/)[1]; + data_payload.token=$rootScope.authSession.match(/&token=([^&]*)/)[1]; } //&auth= |
