Fix access to safety number view from group members screen

This commit is contained in:
Scott Nonnenberg 2019-09-05 11:18:44 -07:00 committed by Ken Powers
parent 3d8006a54f
commit 35e943e817
2 changed files with 3 additions and 3 deletions

View File

@ -54,9 +54,9 @@
this.loading = true;
this.render();
const view = new Whisper.KeyVerificationPanelView({
this.panelView = new Whisper.KeyVerificationPanelView({
model: this.model,
onLoad: () => {
onLoad: view => {
this.loading = false;
this.listenBack(view);
this.render();

View File

@ -25,7 +25,7 @@
this.render();
if (options.onLoad) {
options.onLoad();
options.onLoad(this);
}
this.loadKeys().then(() => {