mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-11 09:54:58 -06:00
@@ -27,7 +27,8 @@
|
||||
}
|
||||
});
|
||||
|
||||
const currentUrl = new URI().getData("url");
|
||||
const searchParams = new URLSearchParams(window.location.search);
|
||||
const currentUrl = searchParams.get("url");
|
||||
|
||||
$("url").value = currentUrl;
|
||||
$("url").focus();
|
||||
@@ -54,7 +55,7 @@
|
||||
fetch("api/v2/rss/setFeedURL", {
|
||||
method: "POST",
|
||||
body: new URLSearchParams({
|
||||
path: new URI().getData("path"),
|
||||
path: searchParams.get("path"),
|
||||
url: newUrl
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user