mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-20 08:41:29 +00:00
flush cache on feedEditSave
This commit is contained in:
@@ -858,7 +858,7 @@ function feedEditSave() {
|
|||||||
dlg_frefresh_callback(transport);
|
dlg_frefresh_callback(transport);
|
||||||
} });
|
} });
|
||||||
|
|
||||||
|
cache_flush();
|
||||||
closeInfoBox();
|
closeInfoBox();
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
@@ -952,12 +952,12 @@ function collapse_feedlist() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function viewModeChanged() {
|
function viewModeChanged() {
|
||||||
cache_empty();
|
cache_flush();
|
||||||
return viewCurrentFeed(0, '')
|
return viewCurrentFeed(0, '')
|
||||||
}
|
}
|
||||||
|
|
||||||
function viewLimitChanged() {
|
function viewLimitChanged() {
|
||||||
cache_empty();
|
cache_flush();
|
||||||
return viewCurrentFeed(0, '')
|
return viewCurrentFeed(0, '')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1863,7 +1863,7 @@ function cache_expire() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function cache_empty() {
|
function cache_flush() {
|
||||||
article_cache = new Array();
|
article_cache = new Array();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user