mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-23 02:17:40 -07:00
Update fetch-meta.ts
This commit is contained in:
parent
fe6ff24947
commit
58a46afc9d
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ export async function fetchMeta(noCache = false): Promise<Meta> {
|
||||||
if (!noCache && cache) return cache;
|
if (!noCache && cache) return cache;
|
||||||
|
|
||||||
return await getConnection().transaction(async transactionalEntityManager => {
|
return await getConnection().transaction(async transactionalEntityManager => {
|
||||||
// バグでレコードが複数出来てしまっている可能性があるので新しいIDを優先する
|
// 過去のバグでレコードが複数出来てしまっている可能性があるので新しいIDを優先する
|
||||||
const meta = await transactionalEntityManager.findOne(Meta, {
|
const meta = await transactionalEntityManager.findOne(Meta, {
|
||||||
order: {
|
order: {
|
||||||
id: 'DESC'
|
id: 'DESC'
|
||||||
|
|
Loading…
Reference in a new issue