Merge pull request #3513 from Lakoja/fix-relationship-crash

Do not crash on empty relationship response
This commit is contained in:
Nik Clayton 2023-04-23 18:36:13 +02:00 committed by GitHub
commit 73be497bbe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -85,7 +85,7 @@ class AccountViewModel @Inject constructor(
mastodonApi.relationships(listOf(accountId))
.fold(
{ relationships ->
relationshipData.postValue(Success(relationships[0]))
relationshipData.postValue(if (relationships.isNotEmpty()) Success(relationships[0]) else Error())
},
{ t ->
Log.w(TAG, "failed obtaining relationships", t)