mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 20:57:17 +01:00
Fixed query.
This commit is contained in:
parent
7764f0ee26
commit
7ec84ae7ea
2 changed files with 2 additions and 2 deletions
|
|
@ -151,7 +151,7 @@ async function rawQuery(sql: string, data: object): Promise<any> {
|
|||
return Promise.reject(new Error('Unknown database.'));
|
||||
}
|
||||
|
||||
const query = sql?.replaceAll(/\{\{(\w+)(::\w+)?}}/g, (...args) => {
|
||||
const query = sql?.replaceAll(/\{\{\s*(\w+)(::\w+)?\s*}}/g, (...args) => {
|
||||
const [, name, type] = args;
|
||||
|
||||
params.push(data[name]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue