Update miscellaneous libraries

This commit is contained in:
TacoTheDank 2023-10-31 21:25:11 -04:00 committed by Stypox
parent e2606c9a7d
commit 7d6dec1379
7 changed files with 20 additions and 25 deletions

View file

@ -47,6 +47,6 @@ object Converters {
@TypeConverter
fun feedGroupIconOf(id: Int): FeedGroupIcon {
return FeedGroupIcon.values().first { it.id == id }
return FeedGroupIcon.entries.first { it.id == id }
}
}