2026.6.0 #27

Merged
last2014 merged 3 commits from develop into main 2026-06-07 15:05:58 +00:00
2 changed files with 5 additions and 2 deletions
Showing only changes of commit f03446fd48 - Show all commits
+3
View File
@@ -1,3 +1,6 @@
# 2026.6.0
- Fix: 地震情報で津波の心配についての情報が記載されない問題
# 2026.5.9 # 2026.5.9
- Fix: pnpmが動作しない問題 - Fix: pnpmが動作しない問題
+2 -2
View File
@@ -182,10 +182,10 @@ const processMessage = async (message: any) => {
: [`🪨深さ: ${message.earthquake.hypocenter.depth === 0 : [`🪨深さ: ${message.earthquake.hypocenter.depth === 0
? "ごく浅い" ? "ごく浅い"
: `${message.earthquake.hypocenter.depth}km`}`])); : `${message.earthquake.hypocenter.depth}km`}`]));
earthquakeNoticeText.push(...(message.earthquake.domesticTsunami ?? "Unknown" === "Unknown" earthquakeNoticeText.push(...((message.earthquake.domesticTsunami ?? "Unknown") === "Unknown"
? [] ? []
: [domesticTsunamiMessages[(message.earthquake.domesticTsunami)]])); : [domesticTsunamiMessages[(message.earthquake.domesticTsunami)]]));
earthquakeNoticeText.push(...(message.earthquake.foreignTsunami ?? "Unknown" === "Unknown" earthquakeNoticeText.push(...((message.earthquake.foreignTsunami ?? "Unknown") === "Unknown"
? [] ? []
: [foreignTsunamiMessages[(message.earthquake.foreignTsunami)]])); : [foreignTsunamiMessages[(message.earthquake.foreignTsunami)]]));
earthquakeNoticeText.push(...(pointsMsg === "" earthquakeNoticeText.push(...(pointsMsg === ""