rm old todo

This commit is contained in:
Hailey
2025-09-01 10:00:08 -07:00
parent 2883a5cba8
commit 6d73e3ed3c
-2
View File
@@ -224,14 +224,12 @@ export class SafelinkClient {
private async getCursor() {
if (this.cursor === '') {
// TODO: catch err
const res = await this.db.db
.selectFrom('safelink_cursor')
.selectAll()
.orderBy('createdAt', 'desc')
.limit(1)
.executeTakeFirst()
if (!res) {
return ''
}