From 31855e8d62dd06119f4c7a2b60405d50e074c0b1 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 22 Apr 2016 12:10:56 +0800 Subject: [PATCH] Pman.I18n.js --- Pman.I18n.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Pman.I18n.js b/Pman.I18n.js index 82409f1b..eefef4d4 100644 --- a/Pman.I18n.js +++ b/Pman.I18n.js @@ -169,8 +169,8 @@ Pman.I18n = { }); ret = ret.sort(function(a,b) { - if (a[0] == '**') return 1; // other always at end.. - if (b[0] == '**') return -1; // other always at end.. + if (a[0] == '**') { return 1; } // other always at end.. + if (b[0] == '**') { return -1; } // other always at end.. return a[1] > b[1] ? 1 : -1; }); -- 2.39.2