Update fetch-meta.ts
This commit is contained in:
parent
bb555ab8ff
commit
90225f9d33
@ -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 New Issue
Block a user