Skip to content

Commit

Permalink
Merge pull request #381 from Unstarrified/patch
Browse files Browse the repository at this point in the history
migration query fix
  • Loading branch information
noridev authored Oct 3, 2023
2 parents 90a1006 + 5e84d69 commit 8ca7029
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class multipleTranslationServices1660183643857 {
await queryRunner.query('SELECT "deeplAuthKey" FROM "meta" where "deeplAuthKey" is not null')
.then(deeplAuthKey => {
if (deeplAuthKey.length > 0) {
return queryRunner.query('UPDATE "meta" SET "translatorType" = "DeepL"');
return queryRunner.query(`UPDATE "meta" SET "translatorType" = 'DeepL'`);
}
})
}
Expand Down

0 comments on commit 8ca7029

Please sign in to comment.