mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
Fix[Reminder]RN対象の削除がなされていた場合へ入る条件分岐の修正
This commit is contained in:
parent
5547551b9d
commit
a5a2736737
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ export default class extends Module {
|
|||
});
|
||||
} catch (err) {
|
||||
// renote対象が消されていたらリマインダー解除
|
||||
if (err.statusCode === 400 && err.error.error.message === 'No such renote target.') {
|
||||
if (err.statusCode === 400) {
|
||||
this.unsubscribeReply(remind.thing == null && remind.quoteId ? remind.quoteId : remind.id);
|
||||
this.reminds.remove(remind);
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue