fix tmdb search for movies

movies don't have name but titles
This commit is contained in:
2021-07-04 13:01:49 +02:00
parent c1b0b4038c
commit 664959641f
3 changed files with 3 additions and 3 deletions

View File

@ -145,7 +145,7 @@ class MainActivity : AppCompatActivity(), NavigationBarView.OnItemSelectedListen
EncryptedPreferences.readCredentials(this)
StorageController.load(this)
// show onbaording
// show onboarding
if (EncryptedPreferences.password.isEmpty()) {
showOnboarding()
} else {

View File

@ -69,7 +69,7 @@ class TMDBApiController {
// println(response)
val sortedResults = response.get("results").asJsonArray.toList().sortedBy {
getStringNotNull(it.asJsonObject, "name")
getStringNotNull(it.asJsonObject, "title")
}
return@withContext if (sortedResults.isNotEmpty()) {