From c5766e431c081c4d39ad040f2ef6c47a4fef2f1d Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sun, 3 Sep 2023 19:44:26 +0800 Subject: [PATCH] Fix error when opts is null/undefined --- src/utils/open-compose.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/open-compose.js b/src/utils/open-compose.js index 68ed28c2..da677112 100644 --- a/src/utils/open-compose.js +++ b/src/utils/open-compose.js @@ -5,7 +5,7 @@ export default function openCompose(opts) { const top = Math.max(0, (screenHeight - 450) / 2); const width = Math.min(screenWidth, 600); const height = Math.min(screenHeight, 450); - const winUID = opts.uid || Math.random(); + const winUID = opts?.uid || Math.random(); const newWin = window.open( url, 'compose' + winUID,