chore: try to enable video player on web on windows machine (#2788)

This commit is contained in:
ggurdin 2025-05-13 16:06:45 -04:00 committed by GitHub
parent 01fee1089b
commit 6c3de08019
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -51,10 +51,11 @@ class EventVideoPlayerState extends State<EventVideoPlayer> {
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#