This commit is contained in:
Moon Man 2023-07-27 01:58:47 +00:00
parent 23459bc0fd
commit 546d35d719
1 changed files with 2 additions and 0 deletions

View File

@ -55,6 +55,8 @@ else if (command === "get" && Deno.args.length == 2) {
} }
if (newLastSeenAt != lastSeenAt) db.query("update channel set last_seen_at = ? where id = ?", [newLastSeenAt, id]); if (newLastSeenAt != lastSeenAt) db.query("update channel set last_seen_at = ? where id = ?", [newLastSeenAt, id]);
db.close();
} }
} }
else { else {