mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-05 23:22:31 -06:00
WebUI: disallow unnecessary quotes in property name
Those two forms are the same and from now on we enforce to one style. PR #22051.
This commit is contained in:
@@ -45,8 +45,8 @@
|
||||
fetch("api/v2/rss/addFeed", {
|
||||
method: "POST",
|
||||
body: new URLSearchParams({
|
||||
"url": feedURL,
|
||||
"path": path ? (path + "\\" + feedURL) : ""
|
||||
url: feedURL,
|
||||
path: path ? (path + "\\" + feedURL) : ""
|
||||
})
|
||||
})
|
||||
.then(async (response) => {
|
||||
|
||||
Reference in New Issue
Block a user