We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 539f385 commit 7434da2Copy full SHA for 7434da2
android/src/main/java/io/fullstack/firestack/FirestackModule.java
@@ -66,7 +66,7 @@ public String setKeyOrDefault(
66
final String val = params.getString(key);
67
Log.d(TAG, "Setting " + key + " from params to: " + val);
68
return val;
69
- } else if (defaultValue != null && defaultValue != "") {
+ } else if (defaultValue != null && !defaultValue.equals("")) {
70
Log.d(TAG, "Setting " + key + " from params to: " + defaultValue);
71
return defaultValue;
72
} else {
0 commit comments