diff --git a/CHANGELOG.md b/CHANGELOG.md index d0534aea69..045c0ea0f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change log for Android @Anytype app. +## Version 0.2.3 (WIP) + +### Fixes & tech 🚒 + +* Data View | Icon is not synced correctly with other peers (#) + ## Version 0.2.2 ### Fixes & tech 🚒 diff --git a/presentation/src/main/java/com/anytypeio/anytype/presentation/relations/ObjectSetRenderMapper.kt b/presentation/src/main/java/com/anytypeio/anytype/presentation/relations/ObjectSetRenderMapper.kt index f1c21e359b..322590772b 100644 --- a/presentation/src/main/java/com/anytypeio/anytype/presentation/relations/ObjectSetRenderMapper.kt +++ b/presentation/src/main/java/com/anytypeio/anytype/presentation/relations/ObjectSetRenderMapper.kt @@ -106,7 +106,10 @@ fun ObjectSet.title( text = title.content().text, emoji = details[ctx]?.iconEmoji, image = details[ctx]?.iconImage?.let { hash -> - urlBuilder.thumbnail(hash = hash) + if (hash.isNotEmpty()) + urlBuilder.thumbnail(hash = hash) + else + null } ) }