diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2026-02-15 12:08:10 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-15 12:08:10 +0900 |
| commit | 799f5ab50421bf6bed20146b13d6c2ca230874f3 (patch) | |
| tree | 23edbd7edcb51870c8e8f221b464e3b76f3a28f8 /packages/frontend/src/stream.ts | |
| parent | Bump version to 2026.2.0-alpha.0 (diff) | |
| download | misskey-799f5ab50421bf6bed20146b13d6c2ca230874f3.tar.gz misskey-799f5ab50421bf6bed20146b13d6c2ca230874f3.tar.bz2 misskey-799f5ab50421bf6bed20146b13d6c2ca230874f3.zip | |
enhance(frontend): いくつかのtodoの解消 (#17154)
Diffstat (limited to '')
| -rw-r--r-- | packages/frontend/src/stream.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/frontend/src/stream.ts b/packages/frontend/src/stream.ts index adbde3fee2..4e6917e0af 100644 --- a/packages/frontend/src/stream.ts +++ b/packages/frontend/src/stream.ts @@ -18,7 +18,6 @@ let lastHeartbeatCall = 0; export function useStream(): Misskey.IStream { if (stream) return stream; - // TODO: No Websocketモードもここで判定 stream = markRaw(new Misskey.Stream(wsOrigin, $i ? { token: $i.token, } : null)); |