summaryrefslogtreecommitdiff
path: root/src/client/os.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/os.ts')
-rw-r--r--src/client/os.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/os.ts b/src/client/os.ts
index daff26efa2..b709fe5933 100644
--- a/src/client/os.ts
+++ b/src/client/os.ts
@@ -10,7 +10,7 @@ import { resolve } from '@/router';
const ua = navigator.userAgent.toLowerCase();
export const isMobile = /mobile|iphone|ipad|android/.test(ua);
-export const stream = new Stream();
+export const stream = markRaw(new Stream());
export const pendingApiRequestsCount = ref(0);