Somehow fix this code that used to work
This commit is contained in:
@@ -7,10 +7,9 @@ export async function handler(db: MySql2Database) {
|
|||||||
id: launcherUpdates.id
|
id: launcherUpdates.id
|
||||||
})
|
})
|
||||||
.from(launcherUpdates)
|
.from(launcherUpdates)
|
||||||
.where(eq(launcherUpdates.hidden, false))
|
.where(eq(launcherUpdates.hidden, 0))
|
||||||
.orderBy(desc(launcherUpdates.place))
|
.orderBy(desc(launcherUpdates.place))
|
||||||
.limit(1)
|
.limit(1)
|
||||||
.execute()
|
|
||||||
|
|
||||||
return version[0].id
|
return version[0].id
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user