From 6c3de08019117dac6461e491d76ca242e9523b71 Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Tue, 13 May 2025 16:06:45 -0400 Subject: [PATCH] chore: try to enable video player on web on windows machine (#2788) --- lib/pages/chat/events/video_player.dart | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/pages/chat/events/video_player.dart b/lib/pages/chat/events/video_player.dart index ffd0b324e..882d2c950 100644 --- a/lib/pages/chat/events/video_player.dart +++ b/lib/pages/chat/events/video_player.dart @@ -51,10 +51,11 @@ class EventVideoPlayerState extends State { bool _isDownloading = false; // The video_player package only doesn't support Windows and Linux. - final _supportsVideoPlayer = - !PlatformInfos.isWindows && !PlatformInfos.isLinux; - // #Pangea + // final _supportsVideoPlayer = + // !PlatformInfos.isWindows && !PlatformInfos.isLinux; + final _supportsVideoPlayer = !PlatformInfos.isLinux; + StreamSubscription? _stopVideoSubscription; // Pangea#