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
1 changed files with 1 additions and 1 deletions

View File

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