You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ia...@apache.org on 2014/05/12 16:37:21 UTC

git commit: Fix sdcard misspelling (This closes #13)

Repository: cordova-plugins
Updated Branches:
  refs/heads/master 297b9e914 -> 437c10b42


Fix sdcard misspelling (This closes #13)


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugins/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugins/commit/437c10b4
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugins/tree/437c10b4
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugins/diff/437c10b4

Branch: refs/heads/master
Commit: 437c10b427bef84777371b37eb83c21b2e0e358d
Parents: 297b9e9
Author: Ian Clelland <ic...@chromium.org>
Authored: Mon May 12 10:36:25 2014 -0400
Committer: Ian Clelland <ic...@chromium.org>
Committed: Mon May 12 10:37:11 2014 -0400

----------------------------------------------------------------------
 file-system-roots/android/FileSystemRoots.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugins/blob/437c10b4/file-system-roots/android/FileSystemRoots.java
----------------------------------------------------------------------
diff --git a/file-system-roots/android/FileSystemRoots.java b/file-system-roots/android/FileSystemRoots.java
index a75c14a..bd10dff 100644
--- a/file-system-roots/android/FileSystemRoots.java
+++ b/file-system-roots/android/FileSystemRoots.java
@@ -123,7 +123,7 @@ public class FileSystemRoots extends CordovaPlugin {
             case PURPOSE_DOCUMENTS:
                 if (sandboxed && installedFilesystems.contains("documents")) {
                     path = "cdvfile://localhost/documents/";
-                } else if (installedFilesystems.contains("scdard")) {
+                } else if (installedFilesystems.contains("sdcard")) {
                     path = "cdvfile://localhost/sdcard/";
                 }
                 break;