From 1902b2207c2534a7d3277b2ae58b7be9fc742866 Mon Sep 17 00:00:00 2001 From: YUKI Hiroshi Date: Wed, 22 Jun 2016 19:04:15 +0900 Subject: [PATCH] Compare with a specific number instead of wildcarded --- components/AboutGroup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/AboutGroup.js b/components/AboutGroup.js index 0cc3f809..81fab1e4 100644 --- a/components/AboutGroup.js +++ b/components/AboutGroup.js @@ -49,7 +49,7 @@ AboutGroup.prototype = { newChannel : function(aURI) { const version = Services.appinfo.platformVersion; - const compareResult = Services.vc.compare('48.*', version); + const compareResult = Services.vc.compare('48.0b1', version); if (compareResult > 0) { return Services.io.newChannel('chrome://treestyletab/content/group.xul', null, null); }