Browse Source

correcting push not part of string

IgnatzHome 7 năm trước cách đây
mục cha
commit
1854f5c061
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      client/lib/filter.js

+ 1 - 1
client/lib/filter.js

@@ -134,7 +134,7 @@ class AdvancedFilter {
         current = '';
         continue;
       }
-      current.push(char);
+      current += char;
     }
     if (current !== '')
     {