diff options
author | New Tobin Paradigm <email@mattatobin.com> | 2020-02-02 06:52:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-02 06:52:04 -0500 |
commit | 54e3d7400219ba108f43d2a77c3c53756e10d81e (patch) | |
tree | afa1bb830350770943a9e6bb778deb2908e2aeb5 /netwerk | |
parent | dd68cb9b3d33bc9cb2613359deed468dd178923f (diff) | |
download | uxp-54e3d7400219ba108f43d2a77c3c53756e10d81e.tar.gz |
Fix preprocessor directive in UserAgentUpdates.jsm
Diffstat (limited to 'netwerk')
-rw-r--r-- | netwerk/protocol/http/UserAgentUpdates.jsm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netwerk/protocol/http/UserAgentUpdates.jsm b/netwerk/protocol/http/UserAgentUpdates.jsm index 6b600e592a..ab88ffd40b 100644 --- a/netwerk/protocol/http/UserAgentUpdates.jsm +++ b/netwerk/protocol/http/UserAgentUpdates.jsm @@ -143,7 +143,7 @@ this.UserAgentUpdates = { // try to load next one if the previous load failed return prevLoad ? prevLoad.then(null, tryNext) : tryNext(); }, null).then(null, (ex) => { -#ifndef MOZ_WIDGET_ANDROID +#ifdef MOZ_WIDGET_ANDROID // Make one last attempt to read from the Fennec APK root. return readChannel("resource://android/" + FILE_UPDATES); #else |