调整颜色,但是还是很丑,打算添加自定义颜色进去
This commit is contained in:
parent
5f693d8d9b
commit
fbfa78788f
@ -300,11 +300,10 @@ class MsgHandler(DatabaseBase):
|
|||||||
if isinstance(end_time, str) and end_time.isdigit():
|
if isinstance(end_time, str) and end_time.isdigit():
|
||||||
end_time = int(end_time)
|
end_time = int(end_time)
|
||||||
|
|
||||||
# If either start_time or end_time is not an integer, set both to 0
|
# if start_time or end_time is not an integer and not a float, set both to 0
|
||||||
if not (isinstance(start_time, int) and isinstance(end_time, int)):
|
if not (isinstance(start_time, (int, float)) and isinstance(end_time, (int, float))):
|
||||||
start_time = 0
|
start_time = 0
|
||||||
end_time = 0
|
end_time = 0
|
||||||
|
|
||||||
params = ()
|
params = ()
|
||||||
|
|
||||||
sql_wxid = "AND StrTalker = ? " if wxid else ""
|
sql_wxid = "AND StrTalker = ? " if wxid else ""
|
||||||
@ -320,7 +319,6 @@ class MsgHandler(DatabaseBase):
|
|||||||
"WHERE StrTalker NOT LIKE '%chatroom%' "
|
"WHERE StrTalker NOT LIKE '%chatroom%' "
|
||||||
f"{sql_wxid} {sql_time} "
|
f"{sql_wxid} {sql_time} "
|
||||||
f"GROUP BY date ORDER BY date ASC;")
|
f"GROUP BY date ORDER BY date ASC;")
|
||||||
|
|
||||||
result = self.execute(sql, params)
|
result = self.execute(sql, params)
|
||||||
|
|
||||||
if not result:
|
if not result:
|
||||||
@ -346,8 +344,8 @@ class MsgHandler(DatabaseBase):
|
|||||||
if isinstance(end_time, str) and end_time.isdigit():
|
if isinstance(end_time, str) and end_time.isdigit():
|
||||||
end_time = int(end_time)
|
end_time = int(end_time)
|
||||||
|
|
||||||
# If either start_time or end_time is not an integer, set both to 0
|
# if start_time or end_time is not an integer and not a float, set both to 0
|
||||||
if not (isinstance(start_time, int) and isinstance(end_time, int)):
|
if not (isinstance(start_time, (int, float)) and isinstance(end_time, (int, float))):
|
||||||
start_time = 0
|
start_time = 0
|
||||||
end_time = 0
|
end_time = 0
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user