diff --git a/routes/_components/dialog/ComposeDialog.html b/routes/_components/dialog/ComposeDialog.html index 8c395874..c5114770 100644 --- a/routes/_components/dialog/ComposeDialog.html +++ b/routes/_components/dialog/ComposeDialog.html @@ -22,7 +22,12 @@ this.set({shown: true}) }, onPostedStatus() { - this.set({closed: true}) + try { + this.set({closed: true}) + } catch (e) { + // TODO: this seems to error sometimes, not sure why + console.error(e) + } } } }