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

This commit is contained in:
na2na-p 2022-05-01 23:35:22 +09:00
parent a26fc350fe
commit 29a3d747d7

View file

@ -157,7 +157,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;