From 8e3d1407c063152063207cb08bb9ebdc167923f6 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Tue, 30 Jun 2020 17:06:10 +0200 Subject: [PATCH] dont leak domain for now --- src/vector/platform/WebPlatform.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/vector/platform/WebPlatform.ts b/src/vector/platform/WebPlatform.ts index 811b46b720..49ed61d5e1 100644 --- a/src/vector/platform/WebPlatform.ts +++ b/src/vector/platform/WebPlatform.ts @@ -173,6 +173,8 @@ export default class WebPlatform extends VectorBasePlatform { } getDefaultDeviceDisplayName(): string { + return "unknown browser"; + // strip query-string and fragment from uri const u = url.parse(window.location.href); u.protocol = "";