Browse Source

Disable preloading until relevant ordering can be ensured

Vishnu Mohandas 4 years ago
parent
commit
ff4b620d0d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/utils/file_util.dart

+ 1 - 1
lib/utils/file_util.dart

@@ -40,7 +40,7 @@ void preloadFile(File file) {
     return;
   }
   if (file.localID == null) {
-    getFileFromServer(file);
+    // getFileFromServer(file);
   } else {
     if (FileLruCache.get(file) == null) {
       file.getAsset().then((asset) {