Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: adblockplus/issue-7415.patch

Issue 30033563: Issue 7415 - ABP data is not being migrated
Patch Set: Created March 28, 2019, 2:01 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « adblockplus/build.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: adblockplus/issue-7415.patch
===================================================================
new file mode 100644
--- /dev/null
+++ b/adblockplus/issue-7415.patch
@@ -0,0 +1,41 @@
+Issue 7415 - ABP data is not being migrated
+
+diff --git a/lib/io.js b/lib/io.js
+--- a/lib/io.js
++++ b/lib/io.js
+@@ -243,17 +243,17 @@
+ */
+ statFile(fileName)
+ {
+ return callWebExt("statFile", fileName);
+ }
+ };
+
+ let {application} = require("info");
+-if (application != "firefox" && application != "fennec2")
++if (application != "firefox" && application != "fennec2" && application != "adblockbrowser")
+ {
+ // Currently, only Firefox has a working WebExtensions implementation, other
+ // applications should just use the fallback.
+ exports.IO = fallback;
+ }
+ else
+ {
+ // Add fallbacks to IO methods - fall back to legacy I/O if file wasn't found.
+diff --git a/metadata.gecko b/metadata.gecko
+--- a/metadata.gecko
++++ b/metadata.gecko
+@@ -1,12 +1,12 @@
+ [general]
+ id={d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}
+ basename=adblockplus
+-version=2.9.1
++version=2.9.2
+ author=Wladimir Palant
+ options=chrome://adblockplus/content/ui/settings.xul
+ optionsType=2
+
+ [contributors]
+ 1=Claude Lespagnol aka Efdur
+ 2=Nickolay Ponomarev
+ 3=Kevin Keller
« no previous file with comments | « adblockplus/build.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld