mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-17 04:11:30 +00:00
prefs: properly save multiple feeds when cache_images param is not present
This commit is contained in:
10
prefs.js
10
prefs.js
@@ -729,10 +729,12 @@ function editSelectedFeeds() {
|
|||||||
query = query + "&private=false";
|
query = query + "&private=false";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!query.match("&cache_images=") &&
|
try {
|
||||||
this.getChildByName('cache_images').attr('disabled') == false) {
|
if (!query.match("&cache_images=") &&
|
||||||
query = query + "&cache_images=false";
|
this.getChildByName('cache_images').attr('disabled') == false) {
|
||||||
}
|
query = query + "&cache_images=false";
|
||||||
|
}
|
||||||
|
} catch (e) { }
|
||||||
|
|
||||||
if (!query.match("&include_in_digest=") &&
|
if (!query.match("&include_in_digest=") &&
|
||||||
this.getChildByName('include_in_digest').attr('disabled') == false) {
|
this.getChildByName('include_in_digest').attr('disabled') == false) {
|
||||||
|
|||||||
Reference in New Issue
Block a user