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 ba3f7bd commit 4f5c325Copy full SHA for 4f5c325
firebase-ai/app/src/main/java/com/google/firebase/quickstart/ai/feature/live/BidiViewModel.kt
@@ -60,7 +60,7 @@ class BidiViewModel(savedStateHandle: SavedStateHandle) : ViewModel() {
60
val date = it.args["date"]?.jsonPrimitive?.content
61
runBlocking {
62
response =
63
- if (!city.isNullOrEmpty() and !state.isNullOrEmpty() and date.isNullOrEmpty()) {
+ if (!city.isNullOrEmpty() and !state.isNullOrEmpty() and !date.isNullOrEmpty()) {
64
fetchWeather(city!!, state!!, date!!)
65
} else {
66
JsonObject(emptyMap())
0 commit comments