Alexandre Alapetite 2022-08-31 12:47:30 +02:00
parent 8a5fae5411
commit 7e5c0268ea
No known key found for this signature in database
GPG Key ID: 3A7556452A07908C
1 changed files with 5 additions and 3 deletions

View File

@ -89,10 +89,12 @@ class FreshRSSItemsAdapter : JsonAdapter<List<Item>>() {
while (reader.hasNext()) {
reader.beginObject()
while (reader.hasNext()) {
when (reader.nextName()) {
"href" -> href = reader.nextNullableString()
"href" -> href = reader.nextString()
else -> reader.skipValue()
}
}
reader.endObject()
}