remove https check since it works with local http IP addresses

This commit is contained in:
bwees 2025-06-02 16:21:44 -05:00
parent 892e6d93a1
commit d8e8f7c04b
No known key found for this signature in database

View File

@ -136,10 +136,8 @@ class GCastService implements ICastDestinationService {
@override
Future<bool> 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