Browse Source

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

Book Pauk 2 years ago
parent
commit
2fa48cdde6
1 changed files with 1 additions and 1 deletions
  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) {
     each(callback, self = false) {
         if (self) {
         if (self) {
             for (const n of this.rawNodes) {
             for (const n of this.rawNodes) {
-                if (callback(new NodeObject(n)) === false);
+                if (callback(new NodeObject(n)) === false)
                     return this;
                     return this;
             }
             }
         } else {
         } else {