From d8e8f7c04b2df8cd2382f12ab4b3b9aac2d68c20 Mon Sep 17 00:00:00 2001 From: bwees Date: Mon, 2 Jun 2025 16:21:44 -0500 Subject: [PATCH] remove https check since it works with local http IP addresses --- mobile/lib/services/gcast.service.dart | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/mobile/lib/services/gcast.service.dart b/mobile/lib/services/gcast.service.dart index 9361cf533f6..730969e65fd 100644 --- a/mobile/lib/services/gcast.service.dart +++ b/mobile/lib/services/gcast.service.dart @@ -136,10 +136,8 @@ class GCastService implements ICastDestinationService { @override Future initialize() async { - // check if server URL is https - final serverUrl = punycodeDecodeUrl(Store.tryGet(StoreKey.serverEndpoint)); - - return serverUrl?.startsWith("https://") ?? false; + // there is nothing blocking us from using Google Cast that we can check for + return true; } @override