mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
chore(lint): Add missing semicolon
This commit is contained in:
parent
5b06ace4b9
commit
d4b83a0efb
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ async function init(): Promise<Config> {
|
|||
try {
|
||||
dbLogger.info('Connecting...');
|
||||
await initDb();
|
||||
const v = await getConnection().query('SHOW server_version').then(x => x[0].server_version)
|
||||
const v = await getConnection().query('SHOW server_version').then(x => x[0].server_version);
|
||||
dbLogger.succ(`Connected: v${v}`);
|
||||
} catch (e) {
|
||||
dbLogger.error('Cannot connect', null, true);
|
||||
|
|
Loading…
Add table
Reference in a new issue