Fix subscription icon displaying for movie types in result previews (#1222)

This commit is contained in:
Luna712 2024-07-28 16:26:22 -06:00 committed by GitHub
parent a28ee41368
commit 0aa48f335a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2163,7 +2163,7 @@ class ResultViewModel2 : ViewModel() {
// lets say that we have subscribed, then we must be able to unsubscribe no matter what // lets say that we have subscribed, then we must be able to unsubscribe no matter what
else if (data != null) { else if (data != null) {
_subscribeStatus.postValue(true) _subscribeStatus.postValue(true)
} } else _subscribeStatus.postValue(null)
} }
private fun postFavorites(loadResponse: LoadResponse) { private fun postFavorites(loadResponse: LoadResponse) {
@ -2861,4 +2861,4 @@ class ResultViewModel2 : ViewModel() {
} }
} }
} }
} }