Merge pull request #30 from n1lsqn/fix/maintenance

feat: リマインドインターバルを24時間おきに設定
This commit is contained in:
n1lsqn 2023-11-23 20:41:15 +09:00 committed by GitHub
commit 59bcc77d7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -104,7 +104,8 @@ const vocaloidUrls = [
'https://www.nicovideo.jp/watch/sm12850213',
'https://www.nicovideo.jp/watch/sm10150980',
'https://www.youtube.com/watch?v=CoL42lnNtp8',
'https://www.nicovideo.jp/watch/sm39853779'
'https://www.nicovideo.jp/watch/sm39853779',
'https://www.nicovideo.jp/watch/sm19748724'
// **
]

View file

@ -6,7 +6,7 @@ import serifs, { getSerif } from '@/serifs';
import { acct } from '@/utils/acct';
import config from '@/config';
const NOTIFY_INTERVAL = 1000 * 60 * 60 * 12;
const NOTIFY_INTERVAL = 1000 * 60 * 60 * 24;
export default class extends Module {
public readonly name = 'reminder';