1
0
mirror of https://github.com/salexdv/bsl_console.git synced 2025-02-07 13:31:37 +02:00

Исправление ошибки, когда параметр запроса включает скобку

This commit is contained in:
salexdv 2021-04-23 14:39:03 +03:00
parent ccd6a46247
commit 3d36733999

View File

@ -1964,7 +1964,7 @@ class bslHelper {
if (this.lastRawExpression.startsWith('&')) {
const matches = this.model.findMatches('&(.*?)[\\s\\n,]', true, true, false, null, true)
const matches = this.model.findMatches('&([a-zA-Z\u0410-\u044F_][a-zA-Z\u0410-\u044F_0-9]*)[\\s\\n,\)]', true, true, false, null, true)
for (let idx = 0; idx < matches.length; idx++) {