This commit is contained in:
Neeraj Gupta
2025-05-12 15:03:30 +05:30
parent c4463d6251
commit 975c7ae8d1

View File

@@ -79,9 +79,9 @@ class _VideoWidgetState extends State<VideoWidget> {
Future<void> _checkForPreview() async {
if (!widget.file.isOwner && flagService.internalUser) {
final bool isStreambale =
final bool isStremable =
await PreviewVideoStore.instance.isSharedFileStreamble(widget.file);
if (!isStreambale && mounted) {
if (!isStremable && mounted) {
isPreviewLoadable = false;
setState(() {});
}