mirror of
https://github.com/dariusk/rss-to-activitypub.git
synced 2024-11-22 09:19:19 +02:00
Fixes redirection to existing feeds by URL-decoding resources locations
This commit is contained in:
parent
54f61e6dc2
commit
01ac1a9e78
|
@ -64,7 +64,7 @@ fetch(`/api/convert/?feed=${feed}&username=${username}`)
|
||||||
// a feed exists in the database
|
// a feed exists in the database
|
||||||
if (myJson.content) {
|
if (myJson.content) {
|
||||||
// was it a match on feed
|
// was it a match on feed
|
||||||
if (myJson.feed === feed) {
|
if (myJson.feed === decodeURIComponent(feed)) {
|
||||||
console.log('feed match!');
|
console.log('feed match!');
|
||||||
out.innerHTML = `<p>This feed already exists! Follow @${myJson.username}@${domain}.</p>`;
|
out.innerHTML = `<p>This feed already exists! Follow @${myJson.username}@${domain}.</p>`;
|
||||||
window.location = `/u/${myJson.username}`;
|
window.location = `/u/${myJson.username}`;
|
||||||
|
|
Loading…
Reference in New Issue