Merged with master and fixed some minor issues

This commit is contained in:
WolverinDEV 2020-08-01 13:07:33 +02:00
parent 08402f3ef2
commit c17c1113c8
3 changed files with 11 additions and 6 deletions

View file

@ -1890,8 +1890,8 @@
</div>
<div class="container general-updates">{{tr "GU" /}}</div>
<div class="container general-keymap"></div>
<div class="container general-chat"></div>
<div class="container general-notifications">
<div class="container general-notifications"></div>
<div class="container general-chat">
<label>
<div class="checkbox">
<input type="checkbox" class="option-fixed-timestamps">

View file

@ -743,7 +743,8 @@ export class ConversationManager extends AbstractChatManager<ConversationUIEvent
}
setSelectedConversation(id: number) {
this.findOrCreateConversation(id);
if(id >= 0)
this.findOrCreateConversation(id);
this.uiEvents.fire("notify_selected_chat", { chatId: id.toString() });
}
@ -798,7 +799,6 @@ export class ConversationManager extends AbstractChatManager<ConversationUIEvent
return;
}
for(const entry of command.arguments) {
conversation.historyQueryResponse.push({
timestamp: parseInt(entry["timestamp"]),

View file

@ -230,8 +230,13 @@ loader.register_task(Stage.JAVASCRIPT_INITIALIZING, {
throw tr("Missing Indexed DB support");
}
await doOpenDatabase(false);
log.debug(LogCategory.CHAT, tr("Successfully initialized private conversation history database"));
try {
await doOpenDatabase(false);
log.debug(LogCategory.CHAT, tr("Successfully initialized private conversation history database"));
} catch (error) {
log.error(LogCategory.CHAT, tr("Failed to initialize private conversation history database: %o"), error);
log.error(LogCategory.CHAT, tr("Do not saving the private conversation chat."));
}
}
});