We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2320100 commit decf635Copy full SHA for decf635
src/tpl/asset/main.js
@@ -99,8 +99,8 @@
99
firstCheckA = a;
100
} else if (firstCheckA === a) {
101
return;
102
- } else if (firstCheckA && !secondCheckA) {
103
- secondCheckA = a
+ } else if (!secondCheckA) {
+ secondCheckA = a;
104
} else if (secondCheckA === a) {
105
106
}
src/tpl/asset/main.js.go
@@ -92,8 +92,8 @@ if (!firstCheckA) {
92
93
94
95
-} else if (firstCheckA && !secondCheckA) {
96
-secondCheckA = a
+} else if (!secondCheckA) {
+secondCheckA = a;
97
98
0 commit comments