mirror of https://github.com/readrops/Readrops.git
Fix FreshRSS get link
#fix https://github.com/readrops/Readrops/issues/162 #fix https://github.com/FreshRSS/FreshRSS/issues/4567
This commit is contained in:
parent
8a5fae5411
commit
7e5c0268ea
|
@ -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()
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue