Added missing msgid in HandleGetInboxMessageById() query

This commit is contained in:
Dmitri Bogomolov 2020-10-04 17:24:45 +03:00
parent 380530c839
commit 6b65113bb4
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13
1 changed files with 1 additions and 1 deletions

View File

@ -930,7 +930,7 @@ class BMRPCDispatcher(object):
except IndexError:
pass
queryreturn = sqlQuery(
"SELECT toaddress, fromaddress, subject, received, message,"
"SELECT msgid, toaddress, fromaddress, subject, received, message,"
" encodingtype, read FROM inbox WHERE msgid=?", msgid
)
try: