summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/streaming/messaging-index.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-03-26 14:51:03 +0900
committerGitHub <noreply@github.com>2018-03-26 14:51:03 +0900
commit8d7d200efffcf9ffd49dba28f729a6e5b9c11f68 (patch)
tree10e3209cd77c3a08b488c08bd4b2f9d7e87de974 /src/web/app/common/scripts/streaming/messaging-index.ts
parentMerge pull request #1293 from rinsuki/fix/using-hostname-insteadof-host (diff)
parentIntroduce account document to user document (diff)
downloadsharkey-8d7d200efffcf9ffd49dba28f729a6e5b9c11f68.tar.gz
sharkey-8d7d200efffcf9ffd49dba28f729a6e5b9c11f68.tar.bz2
sharkey-8d7d200efffcf9ffd49dba28f729a6e5b9c11f68.zip
Merge pull request #1287 from akihikodaki/account
Introduce account document to user document
Diffstat (limited to 'src/web/app/common/scripts/streaming/messaging-index.ts')
-rw-r--r--src/web/app/common/scripts/streaming/messaging-index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/common/scripts/streaming/messaging-index.ts b/src/web/app/common/scripts/streaming/messaging-index.ts
index 84e2174ec4..24f0ce0c9f 100644
--- a/src/web/app/common/scripts/streaming/messaging-index.ts
+++ b/src/web/app/common/scripts/streaming/messaging-index.ts
@@ -8,7 +8,7 @@ import MiOS from '../../mios';
export class MessagingIndexStream extends Stream {
constructor(os: MiOS, me) {
super(os, 'messaging-index', {
- i: me.token
+ i: me.account.token
});
}
}