Skip to content

Commit b95a6ea

Browse files
committed
ANDROID: Fix setenv error #187
1 parent 45b90c1 commit b95a6ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/platform/android/app/src/main/java/net/sourceforge/smallbasic/MainActivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -913,8 +913,8 @@ private final class Storage {
913913
private final String _media;
914914

915915
private Storage() {
916-
String external = null;
917-
String media = null;
916+
String external = "";
917+
String media = "";
918918

919919
String path = Environment.getExternalStorageDirectory().getAbsolutePath();
920920
if (isPublicStorage(path)) {

0 commit comments

Comments
 (0)