[reminder]visibilityがfollowersのときにtodoを受け付けないようにした

This commit is contained in:
na2na 2022-04-11 09:49:47 +09:00
parent 35db08f4e6
commit d42b549585
2 changed files with 9 additions and 2 deletions

View file

@ -34,6 +34,10 @@ export default class Message {
return this.messageOrNote.renoteId;
}
public get visibility(): string {
return this.messageOrNote.visibility;
}
/**
*
*/

View file

@ -59,9 +59,12 @@ export default class extends Module {
const separatorIndex = text.indexOf(' ') > -1 ? text.indexOf(' ') : text.indexOf('\n');
const thing = text.substr(separatorIndex + 1).trim();
if (thing === '' && msg.quoteId == null) {
if (thing === '' && msg.quoteId == null || msg.visibility === 'followers') {
msg.reply(serifs.reminder.invalid);
return true;
return {
reaction: '🆖',
immediate: true,
};
}
const remind = this.reminds.insertOne({