From 7aff4cdf7d5dd12704733218dea8c8bd8803ab04 Mon Sep 17 00:00:00 2001 From: Last2014 Date: Sun, 17 May 2026 19:37:38 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=202026.5.5=E3=81=A7=E4=BF=AE=E6=AD=A3?= =?UTF-8?q?=E3=81=95=E3=82=8C=E3=81=9F=E3=81=A8=E5=A0=B1=E5=91=8A=E3=81=97?= =?UTF-8?q?=E3=81=9F=E3=80=8C20=E4=BB=B6=E5=89=8D=E3=81=AE=E3=83=A6?= =?UTF-8?q?=E3=83=BC=E3=82=BA=E3=82=92=E6=9C=80=E5=BE=8C=E3=81=AB=E5=BF=9C?= =?UTF-8?q?=E7=AD=94=E3=81=97=E3=81=9F=E3=82=B3=E3=83=9E=E3=83=B3=E3=83=89?= =?UTF-8?q?=E3=81=AE=E3=83=A6=E3=83=BC=E3=82=BA=E3=81=A8=E3=81=97=E3=81=A6?= =?UTF-8?q?=E8=A8=98=E9=8C=B2=E3=81=97=E3=81=A6=E3=81=84=E3=81=9F=E5=95=8F?= =?UTF-8?q?=E9=A1=8C=E3=80=8D=E3=82=92=E5=86=8D=E7=99=BA=E3=81=95=E3=81=9B?= =?UTF-8?q?=E3=81=A6=E3=81=84=E3=81=9F=E5=95=8F=E9=A1=8C=20/=202026.5.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +++ package.json | 2 +- src/feature/command/index.ts | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae9fa07..541dd9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 2026.5.6 +- Fix: 2026.5.5で修正されたと報告した「20件前のユーズを最後に応答したコマンドのユーズとして記録していた問題」を再発させていた問題 + # 2026.5.5 - Chg: 毎日7:00の天気予報の日付表記 - Fix: 20件前のユーズを最後に応答したコマンドのユーズとして記録していた問題 diff --git a/package.json b/package.json index 5febe1e..35d8a2d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "notice-uwuzu", - "version": "2026.5.5", + "version": "2026.5.6", "type": "module", "main": "dist/index.js", "scripts": { diff --git a/src/feature/command/index.ts b/src/feature/command/index.ts index 03e1c5e..3bbd5d9 100644 --- a/src/feature/command/index.ts +++ b/src/feature/command/index.ts @@ -44,7 +44,7 @@ try { if (mem.lastReadReply >= time) break; - if (index === notifications.length - 1) + if (index === 0) newLastReadReply = time; ueuses.push(ueuseData); @@ -69,7 +69,7 @@ try { if (mem.lastReadMention >= time) break; - if (index === mentions.length - 1) + if (index === 0) newLastReadMention = time; ueuses.push(mention); -- 2.52.0