You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-16 00:14:34 +02:00
Chore: Migrate SQL queries in preparation for web support (#10670)
This commit is contained in:
@ -896,7 +896,7 @@ export default class Note extends BaseItem {
|
||||
const sql = `
|
||||
UPDATE notes
|
||||
SET ${updateSql.join(', ')}
|
||||
WHERE id IN ("${processIds.join('","')}")
|
||||
WHERE id IN ('${processIds.join('\',\'')}')
|
||||
`;
|
||||
|
||||
await this.db().exec({ sql, params });
|
||||
|
Reference in New Issue
Block a user