mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 838924 - Fix try/catch introduced in bug 835210 which caused FOTA updates to still be broken. r=marshall_law
This commit is contained in:
parent
e657745498
commit
4431d5fba0
@ -19,8 +19,9 @@ function log(msg) {
|
||||
|
||||
#ifdef MOZ_WIDGET_GONK
|
||||
let librecovery = (function() {
|
||||
let library;
|
||||
try {
|
||||
let library = ctypes.open("librecovery.so");
|
||||
library = ctypes.open("librecovery.so");
|
||||
} catch (e) {
|
||||
log("Unable to open librecovery.so");
|
||||
throw Cr.NS_ERROR_FAILURE;
|
||||
|
Loading…
Reference in New Issue
Block a user