Update miscellaneous libraries

This commit is contained in:
TacoTheDank 2023-10-31 21:25:11 -04:00 committed by Stypox
parent ee3455e1e5
commit 4a7fda95ae
No known key found for this signature in database
GPG key ID: 4BDF1B40A49FDD23
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 }
}
}