OLD | NEW |
(Empty) | |
| 1 Issue 7415 - ABP data is not being migrated |
| 2 |
| 3 diff --git a/lib/io.js b/lib/io.js |
| 4 --- a/lib/io.js |
| 5 +++ b/lib/io.js |
| 6 @@ -243,17 +243,17 @@ |
| 7 */ |
| 8 statFile(fileName) |
| 9 { |
| 10 return callWebExt("statFile", fileName); |
| 11 } |
| 12 }; |
| 13 |
| 14 let {application} = require("info"); |
| 15 -if (application != "firefox" && application != "fennec2") |
| 16 +if (application != "firefox" && application != "fennec2" && application != "adb
lockbrowser") |
| 17 { |
| 18 // Currently, only Firefox has a working WebExtensions implementation, other |
| 19 // applications should just use the fallback. |
| 20 exports.IO = fallback; |
| 21 } |
| 22 else |
| 23 { |
| 24 // Add fallbacks to IO methods - fall back to legacy I/O if file wasn't found
. |
| 25 diff --git a/metadata.gecko b/metadata.gecko |
| 26 --- a/metadata.gecko |
| 27 +++ b/metadata.gecko |
| 28 @@ -1,12 +1,12 @@ |
| 29 [general] |
| 30 id={d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d} |
| 31 basename=adblockplus |
| 32 -version=2.9.1 |
| 33 +version=2.9.2 |
| 34 author=Wladimir Palant |
| 35 options=chrome://adblockplus/content/ui/settings.xul |
| 36 optionsType=2 |
| 37 |
| 38 [contributors] |
| 39 1=Claude Lespagnol aka Efdur |
| 40 2=Nickolay Ponomarev |
| 41 3=Kevin Keller |
OLD | NEW |