1
0
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:
sysadminstory 2023-09-05 02:12:20 +02:00 committed by GitHub
parent 99b86c0e1c
commit 752098e0fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 ...';