v3.1.2: fix missing codeBlockFileRegex causing send error

This commit is contained in:
admin
2026-05-20 15:31:14 +04:00
Unverified
parent 895df83333
commit 2e5d2f819a
4 changed files with 4 additions and 3 deletions

View File

@@ -1441,6 +1441,7 @@
var deviceCurrentAppRegex = /\[DEVICE_CURRENT_APP\]/gi;
var hermesInstallRegex = /\[HERMES_INSTALL\]/gi;
var hermesExecRegex = /\[HERMES_EXEC\s+([^\]]+)\]/gi;
var codeBlockFileRegex = /```(\w+)\s*\n([\s\S]*?)```/gi;
var match;
while ((match = createActionRegex.exec(content)) !== null) {