Fix[Reminder]RN対象の削除がなされていた場合へ入る条件分岐の修正

This commit is contained in:
na2na-p 2022-05-01 23:44:37 +09:00
parent 5547551b9d
commit a5a2736737

View file

@ -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;