fix: typo

This commit is contained in:
Prateek Sunal
2025-05-12 15:04:54 +05:30
committed by GitHub
parent 975c7ae8d1
commit d52accdcc9

View File

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