You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2014/06/03 23:14:19 UTC

[3/3] git commit: ubuntu: increase quota value

ubuntu: increase quota value


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/commit/23fba71f
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/tree/23fba71f
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/diff/23fba71f

Branch: refs/heads/master
Commit: 23fba71ff979f71814ce23a3f47152e227021fb2
Parents: 0e46d44
Author: Maxim Ermilov <ma...@canonical.com>
Authored: Sat May 17 00:49:28 2014 +0400
Committer: Maxim Ermilov <ma...@canonical.com>
Committed: Tue Jun 3 20:24:02 2014 +0400

----------------------------------------------------------------------
 src/ubuntu/file.cpp | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/blob/23fba71f/src/ubuntu/file.cpp
----------------------------------------------------------------------
diff --git a/src/ubuntu/file.cpp b/src/ubuntu/file.cpp
index bd06209..395ab2d 100644
--- a/src/ubuntu/file.cpp
+++ b/src/ubuntu/file.cpp
@@ -101,8 +101,7 @@ QPair<QString, QString> File::GetRelativePath(const QFileInfo &fileInfo) {
 void File::requestFileSystem(int scId, int ecId, unsigned short type, unsigned long long size) {
     QDir dir;
 
-    //FIXEME,what is quota value
-    if (size >= 10000){
+    if (size >= 1000485760){
         this->callback(ecId, FileError::kQuotaExceededErr);
         return;
     }