deletion of messages (failing on server)
This commit is contained in:
@@ -35,6 +35,7 @@ export async function getMailbox(mailboxId: number) {
|
||||
}
|
||||
|
||||
export function updateMailbox(mailboxId: number, uidnext: number) {
|
||||
console.log("updateMailbox", mailboxId, uidnext);
|
||||
const query = `UPDATE mailbox SET uidnext = ? WHERE mailbox_id = ?`;
|
||||
const values = [uidnext, mailboxId];
|
||||
execQuery(query, values);
|
||||
|
||||
Reference in New Issue
Block a user