fix: add tls override for websockets incase of self signed certs

This commit is contained in:
cogwheel0
2025-10-11 16:17:35 +05:30
parent e166a05af1
commit 7d4aca1944
7 changed files with 90 additions and 4 deletions

View File

@@ -26,7 +26,8 @@ class BackgroundStreamingHandler {
// Callbacks for platform-specific events
void Function(List<String> streamIds)? onStreamsSuspending;
void Function()? onBackgroundTaskExpiring;
void Function(List<String> streamIds, int estimatedSeconds)? onBackgroundTaskExtended;
void Function(List<String> streamIds, int estimatedSeconds)?
onBackgroundTaskExtended;
void Function()? onBackgroundKeepAlive;
bool Function()? shouldContinueInBackground;