mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 07:30:59 -07:00
Update home-stream.ts
This commit is contained in:
parent
9e4186be9e
commit
ec430bc3b2
1 changed files with 2 additions and 2 deletions
|
@ -16,11 +16,11 @@ export default class Connection extends Stream {
|
||||||
}, 1000 * 60);
|
}, 1000 * 60);
|
||||||
|
|
||||||
// 自分の情報が更新されたとき
|
// 自分の情報が更新されたとき
|
||||||
(this as any).on('i_updated', me.update);
|
this.on('i_updated', me.update);
|
||||||
|
|
||||||
// トークンが再生成されたとき
|
// トークンが再生成されたとき
|
||||||
// このままではAPIが利用できないので強制的にサインアウトさせる
|
// このままではAPIが利用できないので強制的にサインアウトさせる
|
||||||
(this as any).on('my_token_regenerated', () => {
|
this.on('my_token_regenerated', () => {
|
||||||
alert('%i18n:common.my-token-regenerated%');
|
alert('%i18n:common.my-token-regenerated%');
|
||||||
signout();
|
signout();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue