fix: don't show error

This commit is contained in:
Prateek Sunal
2024-11-28 15:09:37 +05:30
parent fe91f3ee9b
commit f7fc50f2e6

View File

@@ -71,11 +71,6 @@ class _VideoViewWidgetState extends State<VideoViewWidget> {
}).onError((error, stackTrace) {
if (!mounted) return;
_logger.warning("Failed to download preview video", error, stackTrace);
showErrorDialog(
context,
"Error",
S.of(context).failedToDownloadVideo,
);
isCheckingForPreview = false;
setState(() {});
});