summaryrefslogtreecommitdiffstats
path: root/web/react/utils
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-08-20 20:34:16 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-08-22 11:27:45 -0700
commitd62924815127c5b7535a8958e2f0ee370aaf21ee (patch)
tree3bda8e52ec2c7bf1f952bd714b6c307d9a8aa9be /web/react/utils
parentc1afc988cb25f27366d24527fb70e718b42fff76 (diff)
downloadchat-d62924815127c5b7535a8958e2f0ee370aaf21ee.tar.gz
chat-d62924815127c5b7535a8958e2f0ee370aaf21ee.tar.bz2
chat-d62924815127c5b7535a8958e2f0ee370aaf21ee.zip
Fixed issue with logout in active sessions not working in ie10
Diffstat (limited to 'web/react/utils')
-rw-r--r--web/react/utils/client.jsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/web/react/utils/client.jsx b/web/react/utils/client.jsx
index c947ff075..cf828c46e 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',