aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--platform/firefox/vapi-background.js10
1 files changed, 1 insertions, 9 deletions
diff --git a/platform/firefox/vapi-background.js b/platform/firefox/vapi-background.js
index 19dfbb8..f78f693 100644
--- a/platform/firefox/vapi-background.js
+++ b/platform/firefox/vapi-background.js
@@ -142,16 +142,8 @@ vAPI.browserSettings = {
return;
}
- // Current value is same as original
- if ( this.getValue(path, setting) === value ) {
- return;
- }
-
// Reset to original value
- try {
- this.setValue(path, setting, value);
- } catch (ex) {
- }
+ this.setValue(path, setting, value);
},
getValue: function(path, setting) {