From d928a547fd1c114336c6c6188cba6cc1e7847c33 Mon Sep 17 00:00:00 2001 From: unknown <13477681517@163.com> Date: Sat, 11 Mar 2023 14:01:20 +0800 Subject: [PATCH] fix: Fix the problem of not displaying the current source ID --- helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers.js b/helpers.js index badd608..9b3e44f 100644 --- a/helpers.js +++ b/helpers.js @@ -58,7 +58,7 @@ function isLowerCaseEqual(str1, str2) { if (str1 && str2) { return str1.toLowerCase() === str2.toLowerCase(); } else { - return !str1 && !str2; + return !str1 || !str2; } }