diff --git a/mobile/android/modules/HelperApps.jsm b/mobile/android/modules/HelperApps.jsm index 4db5139f7a7f..427f427ce938 100644 --- a/mobile/android/modules/HelperApps.jsm +++ b/mobile/android/modules/HelperApps.jsm @@ -42,9 +42,11 @@ var HelperApps = { get defaultHtmlHandlers() { delete this.defaultHtmlHandlers; - let handlers = this.getAppsForUri(Services.io.newURI("http://www.example.com/index.html", null, null)); - this.defaultHtmlHandlers = {}; + let handlers = this.getAppsForUri(Services.io.newURI("http://www.example.com/index.html", null, null), { + filterHtml: false + }); + handlers.forEach(function(app) { this.defaultHtmlHandlers[app.name] = app; }, this);