prefs: properly save multiple feeds when cache_images param is not present
This commit is contained in:
parent
cb635435b1
commit
01becdcdaa
1 changed files with 6 additions and 4 deletions
10
prefs.js
10
prefs.js
|
@ -729,10 +729,12 @@ function editSelectedFeeds() {
|
|||
query = query + "&private=false";
|
||||
}
|
||||
|
||||
if (!query.match("&cache_images=") &&
|
||||
this.getChildByName('cache_images').attr('disabled') == false) {
|
||||
query = query + "&cache_images=false";
|
||||
}
|
||||
try {
|
||||
if (!query.match("&cache_images=") &&
|
||||
this.getChildByName('cache_images').attr('disabled') == false) {
|
||||
query = query + "&cache_images=false";
|
||||
}
|
||||
} catch (e) { }
|
||||
|
||||
if (!query.match("&include_in_digest=") &&
|
||||
this.getChildByName('include_in_digest').attr('disabled') == false) {
|
||||
|
|
Loading…
Reference in a new issue