diff --git a/lib/ui/detail_page.dart b/lib/ui/detail_page.dart index 03bdaa345..cce5b25b4 100644 --- a/lib/ui/detail_page.dart +++ b/lib/ui/detail_page.dart @@ -111,6 +111,9 @@ class _DetailPageState extends State { } void _preloadFile(File file) { + if (file.fileType == FileType.video) { + return; + } if (file.localId == null) { file.getBytes().then((data) { BytesLruCache.put(file, data);