mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
Force feed refreshing on fixing exceptions.
This commit is contained in:
parent
a1b3926249
commit
82c10c563a
1 changed files with 2 additions and 2 deletions
|
@ -203,7 +203,7 @@ NEWSBLUR.ReaderFeedException.prototype = {
|
||||||
if (feed_address.length) {
|
if (feed_address.length) {
|
||||||
this.model.save_exception_change_feed_address(feed_id, feed_address, function(code) {
|
this.model.save_exception_change_feed_address(feed_id, feed_address, function(code) {
|
||||||
NEWSBLUR.reader.flags['has_unfetched_feeds'] = true;
|
NEWSBLUR.reader.flags['has_unfetched_feeds'] = true;
|
||||||
NEWSBLUR.reader.force_feed_refresh();
|
NEWSBLUR.reader.load_feeds();
|
||||||
$.modal.close();
|
$.modal.close();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -221,7 +221,7 @@ NEWSBLUR.ReaderFeedException.prototype = {
|
||||||
if (feed_link.length) {
|
if (feed_link.length) {
|
||||||
this.model.save_exception_change_feed_link(feed_id, feed_link, function(code) {
|
this.model.save_exception_change_feed_link(feed_id, feed_link, function(code) {
|
||||||
NEWSBLUR.reader.flags['has_unfetched_feeds'] = true;
|
NEWSBLUR.reader.flags['has_unfetched_feeds'] = true;
|
||||||
NEWSBLUR.reader.force_feed_refresh();
|
NEWSBLUR.reader.load_feeds();
|
||||||
$.modal.close();
|
$.modal.close();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue