summaryrefslogtreecommitdiffstats
path: root/netwerk
diff options
context:
space:
mode:
authorNew Tobin Paradigm <email@mattatobin.com>2020-02-02 06:52:04 -0500
committerGitHub <noreply@github.com>2020-02-02 06:52:04 -0500
commit54e3d7400219ba108f43d2a77c3c53756e10d81e (patch)
treeafa1bb830350770943a9e6bb778deb2908e2aeb5 /netwerk
parentdd68cb9b3d33bc9cb2613359deed468dd178923f (diff)
downloadUXP-54e3d7400219ba108f43d2a77c3c53756e10d81e.tar
UXP-54e3d7400219ba108f43d2a77c3c53756e10d81e.tar.gz
UXP-54e3d7400219ba108f43d2a77c3c53756e10d81e.tar.lz
UXP-54e3d7400219ba108f43d2a77c3c53756e10d81e.tar.xz
UXP-54e3d7400219ba108f43d2a77c3c53756e10d81e.zip
Fix preprocessor directive in UserAgentUpdates.jsm
Diffstat (limited to 'netwerk')
-rw-r--r--netwerk/protocol/http/UserAgentUpdates.jsm2
1 files changed, 1 insertions, 1 deletions
diff --git a/netwerk/protocol/http/UserAgentUpdates.jsm b/netwerk/protocol/http/UserAgentUpdates.jsm
index 6b600e592..ab88ffd40 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