1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-07 21:37:02 +09:00

updated change log

This commit is contained in:
E. Kozlov 2021-08-02 15:04:37 +03:00
parent 9b81393d50
commit e6eef8d504
2 changed files with 10 additions and 1 deletions

View file

@ -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 🚒

View file

@ -106,7 +106,10 @@ fun ObjectSet.title(
text = title.content<Block.Content.Text>().text,
emoji = details[ctx]?.iconEmoji,
image = details[ctx]?.iconImage?.let { hash ->
urlBuilder.thumbnail(hash = hash)
if (hash.isNotEmpty())
urlBuilder.thumbnail(hash = hash)
else
null
}
)
}