From d336a1fb1cb8d30551159eaf0c23d1a5bb484892 Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Mon, 25 Aug 2025 13:51:52 +0900 Subject: [PATCH] refactor --- packages/frontend/src/components/MkPostForm.vue | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/frontend/src/components/MkPostForm.vue b/packages/frontend/src/components/MkPostForm.vue index f1fa870991..56683b8f8c 100644 --- a/packages/frontend/src/components/MkPostForm.vue +++ b/packages/frontend/src/components/MkPostForm.vue @@ -959,7 +959,16 @@ async function post(ev?: MouseEvent) { if (postAccount.value) { const storedAccounts = await getAccounts(); - token = storedAccounts.find(x => x.id === postAccount.value?.id)?.token; + const storedAccount = storedAccounts.find(x => x.id === postAccount.value?.id); + if (storedAccount && storedAccount.token != null) { + token = storedAccount.token; + } else { + await os.alert({ + type: 'error', + text: 'cannot find the token of the selected account.', + }); + return; + } } posting.value = true;