diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2022-01-06 20:07:11 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-06 20:07:11 +0900 |
| commit | b8f8b9e72c6c48c4cefa897a3d754178ec620bd5 (patch) | |
| tree | 7f4e3b5823b9a8f9dc5f91dd525d08796633763c /packages/client/src/stream.ts | |
| parent | tweak ui (diff) | |
| download | misskey-b8f8b9e72c6c48c4cefa897a3d754178ec620bd5.tar.gz misskey-b8f8b9e72c6c48c4cefa897a3d754178ec620bd5.tar.bz2 misskey-b8f8b9e72c6c48c4cefa897a3d754178ec620bd5.zip | |
非ログイン時にエラーを吐くconsole.logを除去 (#8119)
Diffstat (limited to 'packages/client/src/stream.ts')
| -rw-r--r-- | packages/client/src/stream.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/client/src/stream.ts b/packages/client/src/stream.ts index de918e6099..dea3459b86 100644 --- a/packages/client/src/stream.ts +++ b/packages/client/src/stream.ts @@ -3,8 +3,6 @@ import { markRaw } from 'vue'; import { $i } from '@/account'; import { url } from '@/config'; -console.log($i.token); - export const stream = markRaw(new Misskey.Stream(url, $i ? { token: $i.token, } : null)); |