mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-13 20:11:07 +02:00
strict js: fix subscribing when HTML with multiple feeds
also a minor fix for response handling in quickAddFilter
This commit is contained in:
parent
f60ca3a349
commit
30aa9743eb
@ -646,7 +646,7 @@ function quickAddFeed() {
|
|||||||
dialog.show_error(__("Specified URL doesn't seem to contain any feeds."));
|
dialog.show_error(__("Specified URL doesn't seem to contain any feeds."));
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
feeds = rc['feeds'];
|
var feeds = rc['feeds'];
|
||||||
|
|
||||||
Element.show("fadd_multiple_notify");
|
Element.show("fadd_multiple_notify");
|
||||||
|
|
||||||
@ -1032,7 +1032,7 @@ function quickAddFilter() {
|
|||||||
|
|
||||||
var title = false;
|
var title = false;
|
||||||
|
|
||||||
if (reply && reply) title = reply.title;
|
if (reply && reply.title) title = reply.title;
|
||||||
|
|
||||||
if (title || getActiveFeedId() || activeFeedIsCat()) {
|
if (title || getActiveFeedId() || activeFeedIsCat()) {
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user