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 6a73131 commit 5859a10Copy full SHA for 5859a10
src/main/java/android/content/Context.kt
@@ -58,7 +58,7 @@ open class Context {
58
override fun getString(key: String, defaultValue: String?): String? {
59
return when {
60
key == "last-used-date" -> FirebasePlatform.firebasePlatform.retrieve(key) ?: defaultValue
61
- key.startsWith("|T|") -> null
+ key.contains("|T|") -> null
62
key.startsWith("com.google.firebase.auth.FIREBASE_USER") ->
63
FirebasePlatform.firebasePlatform.retrieve(key) ?: defaultValue
64
else -> throw IllegalArgumentException(key)
0 commit comments