summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-11-28 15:05:55 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-11-28 15:05:55 +0900
commit607836331103cae089487e4d517f3de5c02ed1bc (patch)
tree94ebf18d04e203d6b4c70d809546980e0e76bd64 /src/web/app/common/scripts
parentFix bug (diff)
downloadsharkey-607836331103cae089487e4d517f3de5c02ed1bc.tar.gz
sharkey-607836331103cae089487e4d517f3de5c02ed1bc.tar.bz2
sharkey-607836331103cae089487e4d517f3de5c02ed1bc.zip
:v:
Diffstat (limited to 'src/web/app/common/scripts')
-rw-r--r--src/web/app/common/scripts/api.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/web/app/common/scripts/api.ts b/src/web/app/common/scripts/api.ts
index e62447b0a0..2008e6f5ac 100644
--- a/src/web/app/common/scripts/api.ts
+++ b/src/web/app/common/scripts/api.ts
@@ -29,7 +29,8 @@ export default (i, endpoint, data = {}): Promise<{ [x: string]: any }> => {
fetch(endpoint.indexOf('://') > -1 ? endpoint : `${_API_URL_}/${endpoint}`, {
method: 'POST',
body: JSON.stringify(data),
- credentials: endpoint === 'signin' ? 'include' : 'omit'
+ credentials: endpoint === 'signin' ? 'include' : 'omit',
+ cache: 'no-cache'
}).then(res => {
if (--pending === 0) spinner.parentNode.removeChild(spinner);
if (res.status === 200) {