7478440bd6
Fixes #63. There are still some situations which can be improved but it appears good enough.
16 lines
602 B
Python
16 lines
602 B
Python
from helper_sql import *
|
|
import shared
|
|
|
|
def insert(t):
|
|
sqlExecute('''INSERT INTO inbox VALUES (?,?,?,?,?,?,?,?,?,?)''', *t)
|
|
#shouldn't emit changedInboxUnread and displayNewInboxMessage at the same time
|
|
#shared.UISignalQueue.put(('changedInboxUnread', None))
|
|
|
|
def trash(msgid):
|
|
sqlExecute('''UPDATE inbox SET folder='trash' WHERE msgid=?''', msgid)
|
|
shared.UISignalQueue.put(('removeInboxRowByMsgid',msgid))
|
|
|
|
def isMessageAlreadyInInbox(sigHash):
|
|
queryReturn = sqlQuery(
|
|
'''SELECT COUNT(*) FROM inbox WHERE sighash=?''', sigHash)
|
|
return queryReturn[0][0] != 0 |