Skip to content

Commit

Permalink
Platform 8 upgrade: Port local plugin to Soup 3 (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
dar5hak authored Oct 6, 2024
1 parent b17262c commit 6471bff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/backend/local/SuggestedFeedRow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public class FeedReader.SuggestedFeedRow : Gtk.ListBoxRow {
this.set_tooltip_text(m_desc);
show_all();

var uri = new Soup.URI(url);
var uri = GLib.Uri.parse(url, GLib.UriFlags.NONE);
var fakeFeed = new Feed(uri.get_host(), null, null, 0);
load_favicon.begin(iconStack, fakeFeed, iconURL, (obj, res) => {
load_favicon.end(res);
Expand Down

0 comments on commit 6471bff

Please sign in to comment.