mirror of
https://github.com/LC044/WeChatMsg
synced 2025-04-05 20:08:01 +08:00
🐛 修复聊天记录显示不全 #88
This commit is contained in:
parent
b6f041b67a
commit
f6754c0db8
@ -58,7 +58,7 @@ class Msg:
|
||||
sql = '''
|
||||
select localId,TalkerId,Type,SubType,IsSender,CreateTime,Status,StrContent,strftime('%Y-%m-%d %H:%M:%S',CreateTime,'unixepoch','localtime') as StrTime,MsgSvrID
|
||||
from MSG
|
||||
where StrTalker=?
|
||||
where TRIM(StrTalker)=?
|
||||
order by CreateTime
|
||||
'''
|
||||
try:
|
||||
@ -87,11 +87,29 @@ class Msg:
|
||||
result.sort(key=lambda x: x[5])
|
||||
return result
|
||||
|
||||
def get_messages_length(self):
|
||||
sql = '''
|
||||
select count(*)
|
||||
from MSG
|
||||
'''
|
||||
if not self.open_flag:
|
||||
return None
|
||||
try:
|
||||
lock.acquire(True)
|
||||
self.cursor.execute(sql)
|
||||
result = self.cursor.fetchone()
|
||||
except Exception as e:
|
||||
result = None
|
||||
finally:
|
||||
lock.release()
|
||||
return result[0]
|
||||
|
||||
|
||||
def get_message_by_num(self, username_, local_id):
|
||||
sql = '''
|
||||
select localId,TalkerId,Type,SubType,IsSender,CreateTime,Status,StrContent,strftime('%Y-%m-%d %H:%M:%S',CreateTime,'unixepoch','localtime') as StrTime
|
||||
from MSG
|
||||
where StrTalker = ? and localId < ?
|
||||
where TRIM(StrTalker) = ? and localId < ?
|
||||
order by CreateTime desc
|
||||
limit 10
|
||||
'''
|
||||
@ -115,7 +133,7 @@ class Msg:
|
||||
sql = '''
|
||||
select localId,TalkerId,Type,SubType,IsSender,CreateTime,Status,StrContent,strftime('%Y-%m-%d %H:%M:%S',CreateTime,'unixepoch','localtime') as StrTime,MsgSvrID
|
||||
from MSG
|
||||
where StrTalker=? and Type=?
|
||||
where TRIM(StrTalker)=? and Type=?
|
||||
order by CreateTime
|
||||
'''
|
||||
try:
|
||||
@ -132,7 +150,7 @@ class Msg:
|
||||
sql = '''
|
||||
select localId,TalkerId,Type,SubType,IsSender,CreateTime,Status,StrContent,strftime('%Y-%m-%d %H:%M:%S',CreateTime,'unixepoch','localtime') as StrTime,MsgSvrID
|
||||
from MSG
|
||||
where StrTalker=? and Type=1 and LENGTH(StrContent)<? and StrContent like ?
|
||||
where TRIM(StrTalker)=? and Type=1 and LENGTH(StrContent)<? and StrContent like ?
|
||||
order by CreateTime desc
|
||||
'''
|
||||
temp = []
|
||||
@ -176,7 +194,7 @@ class Msg:
|
||||
sql = '''
|
||||
select StrContent,strftime('%Y-%m-%d %H:%M:%S',CreateTime,'unixepoch','localtime') as StrTime
|
||||
from MSG
|
||||
where StrTalker=?
|
||||
where TRIM(StrTalker)=?
|
||||
order by CreateTime
|
||||
limit 1
|
||||
'''
|
||||
|
@ -17,6 +17,8 @@ class TextMessage(QLabel):
|
||||
heightSingal = pyqtSignal(int)
|
||||
|
||||
def __init__(self, text, is_send=False, parent=None):
|
||||
if isinstance(text, bytes):
|
||||
text = text.decode('utf-8')
|
||||
super(TextMessage, self).__init__(text, parent)
|
||||
font = QFont('微软雅黑', 12)
|
||||
self.setFont(font)
|
||||
|
@ -142,7 +142,7 @@ class ShowChatThread(QThread):
|
||||
# heightSingal = pyqtSignal(int)
|
||||
def __init__(self, contact):
|
||||
super().__init__()
|
||||
self.last_message_id = 9999999
|
||||
self.last_message_id = msg_db.get_messages_length() or 9999999
|
||||
self.wxid = contact.wxid
|
||||
|
||||
def run(self) -> None:
|
||||
|
Loading…
Reference in New Issue
Block a user