summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-04-19 08:13:06 +0400
committerAndrew Dolgov <[email protected]>2011-04-19 08:13:06 +0400
commitdd04ea81bab44837796911945db448974582c1bf (patch)
treed49bcd2e367c04819088159afdec8ad7154ea8e5
parent6338b16fb54ae39135eec0e4dbea5349b02ec516 (diff)
batch feed editor: fix newer options not working properly
-rw-r--r--prefs.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/prefs.js b/prefs.js
index 2a054df53..d22686cee 100644
--- a/prefs.js
+++ b/prefs.js
@@ -715,6 +715,21 @@ function editSelectedFeeds() {
query = query + "&include_in_digest=false";
}
+ if (!query.match("&always_display_enclosures=") &&
+ this.getChildByName('always_display_enclosures').attr('disabled') == false) {
+ query = query + "&always_display_enclosures=false";
+ }
+
+ if (!query.match("&mark_unread_on_update=") &&
+ this.getChildByName('mark_unread_on_update').attr('disabled') == false) {
+ query = query + "&mark_unread_on_update=false";
+ }
+
+ if (!query.match("&update_on_checksum_change=") &&
+ this.getChildByName('update_on_checksum_change').attr('disabled') == false) {
+ query = query + "&update_on_checksum_change=false";
+ }
+
console.log(query);
notify_progress("Saving data...", true);