ストリームを経由してのリクエストではトークンの添付は無駄だった

This commit is contained in:
syuilo 2018-04-15 17:39:12 +09:00
parent 2325c147f8
commit 0bbe8267b8

View file

@ -445,9 +445,6 @@ export default class MiOS extends EventEmitter {
if (--pending === 0) spinner.parentNode.removeChild(spinner);
};
// Append a credential
if (this.isSignedIn) (data as any).i = this.i.token;
const promise = new Promise((resolve, reject) => {
const viaStream = this.stream.hasConnection &&
(localStorage.getItem('apiViaStream') ? localStorage.getItem('apiViaStream') == 'true' : true);
@ -473,6 +470,9 @@ export default class MiOS extends EventEmitter {
data
});
} else {
// Append a credential
if (this.isSignedIn) (data as any).i = this.i.token;
const req = {
id: uuid(),
date: new Date(),