fix notification open the correct conversation

pull/1833/head
audric 4 years ago
parent 426f2000b8
commit b6fcd59ec4

2
.gitignore vendored

@ -44,3 +44,5 @@ yarn-error.log
# editor # editor
.vscode/ .vscode/
libloki/test/test.js

@ -12,6 +12,8 @@ libtextsecure/components.js
libtextsecure/test/test.js libtextsecure/test/test.js
stylesheets/*.css stylesheets/*.css
test/test.js test/test.js
libloki/test/test.js
test/ts/**/*.js test/ts/**/*.js
ts/**/*.js ts/**/*.js
ts/protobuf/*.d.ts ts/protobuf/*.d.ts

@ -348,7 +348,7 @@
Whisper.Notifications.on('click', async (id, messageId) => { Whisper.Notifications.on('click', async (id, messageId) => {
window.showWindow(); window.showWindow();
if (id) { if (id) {
await window.openConversationWithMessages({ id, messageId }); await window.openConversationWithMessages({ conversationKey: id, messageId });
} else { } else {
appView.openInbox({ appView.openInbox({
initialLoadComplete, initialLoadComplete,

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save