1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-04-22 18:15:47 +02:00

Fix a crash in reply-account plugin on Popout

This commit is contained in:
chylex 2016-09-27 21:30:34 +02:00
parent 03591f8317
commit 96fa7efb66

View File

@ -6,7 +6,7 @@ enabled(){
this.lastSelectedAccount = null;
this.uiComposeTweetEvent = (e, data) => {
if (data.type !== "reply"){
if (data.type !== "reply" || data.popFromInline || !("element" in data)){
return;
}