mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-01-16 21:58:21 +01:00
[Core] Fix Find Feed URL encoding (#3650)
The URL entered by the user was not URL encoded for the find feed feature : this had lead to wrong content sent back to he server
This commit is contained in:
parent
99b86c0e1c
commit
752098e0fa
@ -56,7 +56,7 @@ var rssbridge_feed_finder = (function() {
|
||||
// Start the Feed search
|
||||
async function rssbridge_feed_search(event) {
|
||||
const input = document.getElementById('searchfield');
|
||||
let content = input.value;
|
||||
let content = encodeURI(input.value);
|
||||
if (content) {
|
||||
const findfeedresults = document.getElementById('findfeedresults');
|
||||
findfeedresults.innerHTML = 'Searching for matching feeds ...';
|
||||
|
Loading…
x
Reference in New Issue
Block a user