Commit d5b11861 authored by Tijmen de Mes's avatar Tijmen de Mes

Fixed opening last message sessions

parent 52ca6125
...@@ -491,7 +491,7 @@ class MessageHistory(object, metaclass=Singleton): ...@@ -491,7 +491,7 @@ class MessageHistory(object, metaclass=Singleton):
return return
log.debug(f"== Contacts fetched: {len(list(result))}") log.debug(f"== Contacts fetched: {len(list(result))}")
result = [' '.join(item) for item in result] result = [''.join(uri) for (uri, timestamp) in result]
notification_center.post_notification('BlinkMessageHistoryLastContactsDidSucceed', data=NotificationData(contacts=list(result))) notification_center.post_notification('BlinkMessageHistoryLastContactsDidSucceed', data=NotificationData(contacts=list(result)))
@run_in_thread('db') @run_in_thread('db')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment