Skip to content

Commit 7434da2

Browse files
committed
Bugfix in configuration using google-services.json
1 parent 539f385 commit 7434da2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/java/io/fullstack/firestack/FirestackModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public String setKeyOrDefault(
6666
final String val = params.getString(key);
6767
Log.d(TAG, "Setting " + key + " from params to: " + val);
6868
return val;
69-
} else if (defaultValue != null && defaultValue != "") {
69+
} else if (defaultValue != null && !defaultValue.equals("")) {
7070
Log.d(TAG, "Setting " + key + " from params to: " + defaultValue);
7171
return defaultValue;
7272
} else {

0 commit comments

Comments
 (0)