Browse Source

Improve comment

Neeraj Gupta 2 years ago
parent
commit
31f66f799d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/utils/file_uploader.dart

+ 1 - 1
lib/utils/file_uploader.dart

@@ -711,7 +711,7 @@ class FileUploader {
       if (userDetails == null) {
         return;
       }
-      // add 5MB to the free storage
+      // add k20MBStorageBuffer to the free storage
       final num freeStorage = userDetails.getFreeStorage() + k20MBStorageBuffer;
       final num fileSize = await fileToBeUploaded.length();
       if (fileSize > freeStorage) {