small fix for gui

This commit is contained in:
Gabriel 2025-08-05 14:16:44 -04:00
parent 2d6a417987
commit 01a5bdac40

View file

@ -132,7 +132,7 @@ pub fn is_feed(url: &str) -> bool {
}
pub fn load_rss(url: &str) -> Option<Channel> {
let client = Client::new();
let client = get_client(url_network(url)).unwrap();
let res = client.get(url).header(USER_AGENT, "RSS Reader").send();
match res {
Ok(resp) => match resp.bytes() {