Skip to content

Commit db74228

Browse files
committed
fixed critical bug
1 parent 0b59b9a commit db74228

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

public/crucial.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const configurations = {
2222
};
2323

2424
const configuration = "public";
25-
const version = "1.6.57"; // Big Update . Small Feature Release . Bug Fix
25+
const version = "1.6.58"; // Big Update . Small Feature Release . Bug Fix
2626
const domain = "markifyapp.com";
2727

2828
let config = configurations[configuration];

public/modules/pages/app/lesson.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ modules["pages/app/lesson"] = class extends page {
592592
setFrame("pages/app/join", null, { passParams: true });
593593
}
594594
}
595-
if (body.includes("tool") == true) {
595+
if (body.hasOwnProperty("tool") == true) {
596596
//await this.addPage(tool, tool, { });
597597
}
598598
break;

0 commit comments

Comments
 (0)