fix chat message npe resolving trade's second dispute

This commit is contained in:
woodser 2024-02-01 08:10:26 -05:00
parent 6f51d333ec
commit dfaf39bab3

View file

@ -149,6 +149,8 @@ public class DisputeChatPopup {
// Delay display to next render frame to avoid that the popup is first quickly displayed in default position
// and after a short moment in the correct position
UserThread.execute(() -> chatPopupStage.setOpacity(1));
UserThread.execute(() -> {
if (chatPopupStage != null) chatPopupStage.setOpacity(1);
});
}
}