Fix: /weatherが利用できない問題 / 2026.5.2

This commit is contained in:
2026-05-16 19:30:09 +09:00
parent 6b732b3110
commit 4dfdb6fc4a
3 changed files with 5 additions and 2 deletions
+3
View File
@@ -1,3 +1,6 @@
# 2026.5.2
- Fix: `/weather`が利用できない問題
# 2026.5.1
- Feat: 地震の震度分布画像生成
- Feat: 震度分布画に全タイルが埋まる機能
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "notice-uwuzu",
"version": "2026.5.1",
"version": "2026.5.2",
"type": "module",
"main": "dist/index.js",
"scripts": {
+1 -1
View File
@@ -2,5 +2,5 @@ import ueuseModule from "better-uwuzu-sdk/types/1.6.8/types/modules/ueuse";
import { weatherReply } from "@/feature/weatherNotice";
export default async function weatherCommand(ueuse: ueuseModule) {
await weatherReply(ueuse.uniqid);
await weatherReply(ueuse.uniqid, false);
}