mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-22 04:03:49 +01:00
Add fallback for broken db
This commit is contained in:
parent
0058e041c3
commit
4e23792d02
@ -4,6 +4,7 @@ import AccessToken from './access-token';
|
||||
import db from '../db/mongodb';
|
||||
import isObjectId from '../misc/is-objectid';
|
||||
import config from '../config';
|
||||
import { dbLogger } from '../db/logger';
|
||||
|
||||
const App = db.get<IApp>('apps');
|
||||
App.createIndex('secret');
|
||||
@ -66,6 +67,12 @@ export const pack = (
|
||||
}
|
||||
}
|
||||
|
||||
// (データベースの欠損などで)アプリがデータベース上に見つからなかったとき
|
||||
if (_app == null) {
|
||||
dbLogger.warn(`[DAMAGED DB] (missing) pkg: app :: ${app}`);
|
||||
return null;
|
||||
}
|
||||
|
||||
// Rename _id to id
|
||||
_app.id = _app._id;
|
||||
delete _app._id;
|
||||
|
Loading…
Reference in New Issue
Block a user