fix: set streaming on by default

This commit is contained in:
Prateek Sunal
2025-06-17 20:03:43 +05:30
parent 9acfbf355c
commit 92e013d5c9

View File

@@ -73,7 +73,7 @@ class VideoPreviewService {
static const String _videoStreamingCutoff = "videoStreamingCutoff";
bool get isVideoStreamingEnabled {
return _prefs.getBool(_videoStreamingEnabled) ?? false;
return _prefs.getBool(_videoStreamingEnabled) ?? true;
}
Future<void> setIsVideoStreamingEnabled(bool value) async {