From d62924815127c5b7535a8958e2f0ee370aaf21ee Mon Sep 17 00:00:00 2001 From: Reed Garmsen Date: Thu, 20 Aug 2015 20:34:16 -0700 Subject: [PATCH] Fixed issue with logout in active sessions not working in ie10 --- web/react/utils/client.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/react/utils/client.jsx b/web/react/utils/client.jsx index c947ff075b..cf828c46e3 100644 --- a/web/react/utils/client.jsx +++ b/web/react/utils/client.jsx @@ -252,6 +252,7 @@ module.exports.revokeSession = function(altId, success, error) { module.exports.getSessions = function(userId, success, error) { $.ajax({ + cache: false, url: '/api/v1/users/' + userId + '/sessions', dataType: 'json', contentType: 'application/json', @@ -789,6 +790,7 @@ module.exports.removeChannelMember = function(id, data, success, error) { module.exports.getProfiles = function(success, error) { $.ajax({ + cache: false, url: '/api/v1/users/profiles', dataType: 'json', contentType: 'application/json',