From 12c8516a9f8151f22588d4a0fb42530b85265c6f Mon Sep 17 00:00:00 2001 From: Pliable Pixels Date: Sat, 18 May 2019 13:29:28 -0400 Subject: #817 various intercept fixes --- www/js/MontageHistoryCtrl.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'www/js/MontageHistoryCtrl.js') 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= -- cgit v1.2.3