Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.

Commit 5b19cc7

Browse files
committed
Set RSS links correctly in Bazqux, FeedHQ, InoReader and TT-RSS
This should fix #855
1 parent a4f53e6 commit 5b19cc7

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

plugins/backend/bazqux/bazquxAPI.vala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ public bool getFeeds(Gee.List<Feed> feeds)
130130
url,
131131
0,
132132
categories,
133-
icon_url
133+
icon_url,
134+
object.get_string_member("url")
134135
)
135136
);
136137
}

plugins/backend/feedhq/feedhqAPI.vala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ public bool getFeeds(Gee.List<Feed> feeds)
133133
url,
134134
0,
135135
categories,
136-
icon_url
136+
icon_url,
137+
object.get_string_member("url")
137138
)
138139
);
139140
}

plugins/backend/inoreader/InoReaderAPI.vala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ public bool getFeeds(Gee.List<Feed> feeds)
133133
url,
134134
0,
135135
categories,
136-
object.get_string_member("iconUrl")
136+
object.get_string_member("iconUrl"),
137+
object.get_string_member("url")
137138
)
138139
);
139140
}

plugins/backend/ttrss/ttrssAPI.vala

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,8 @@ public bool getFeeds(Gee.List<Feed> feeds, Gee.List<Category> categories)
223223
feed_node.get_string_member("feed_url"),
224224
UntypedJson.Object.get_int_member(feed_node, "unread"),
225225
ListUtils.single(UntypedJson.Object.get_string_member(feed_node, "cat_id")),
226-
icon_url
226+
icon_url,
227+
feed_node.get_string_member("feed_url")
227228
)
228229
);
229230
}
@@ -264,7 +265,8 @@ public bool getUncategorizedFeeds(Gee.List<Feed> feeds)
264265
feed_node.get_string_member("feed_url"),
265266
UntypedJson.Object.get_int_member(feed_node, "unread"),
266267
ListUtils.single(UntypedJson.Object.get_string_member(feed_node, "cat_id")),
267-
icon_url
268+
icon_url,
269+
feed_node.get_string_member("feed_url")
268270
)
269271
);
270272
}

0 commit comments

Comments
 (0)