Selaa lähdekoodia

Поправлен баг

Book Pauk 2 vuotta sitten
vanhempi
commit
2fa48cdde6
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      server/core/xml/XmlParser.js

+ 1 - 1
server/core/xml/XmlParser.js

@@ -336,7 +336,7 @@ class XmlParser extends NodeBase {
     each(callback, self = false) {
         if (self) {
             for (const n of this.rawNodes) {
-                if (callback(new NodeObject(n)) === false);
+                if (callback(new NodeObject(n)) === false)
                     return this;
             }
         } else {