mirror of
https://github.com/syuilo/ai.git
synced 2024-11-09 23:48:01 +00:00
数秒待つように
This commit is contained in:
parent
8817ef3685
commit
f98644978e
22
src/front.ts
22
src/front.ts
|
@ -38,16 +38,18 @@ homeStream.addEventListener('message', message => {
|
|||
if (note.userId == config.id) return;
|
||||
|
||||
// リアクションする
|
||||
request.post(`${apiUrl}/notes/reactions/create`, {
|
||||
json: {
|
||||
i: config.i,
|
||||
noteId: note.id,
|
||||
reaction: 'love'
|
||||
}
|
||||
});
|
||||
setTimeout(() => {
|
||||
request.post(`${apiUrl}/notes/reactions/create`, {
|
||||
json: {
|
||||
i: config.i,
|
||||
noteId: note.id,
|
||||
reaction: 'love'
|
||||
}
|
||||
});
|
||||
}, 2000);
|
||||
|
||||
if (note.text) {
|
||||
if (note.text.indexOf('リバーシ') > -1) {
|
||||
if (note.text && note.text.indexOf('リバーシ') > -1) {
|
||||
setTimeout(() => {
|
||||
request.post(`${apiUrl}/notes/create`, {
|
||||
json: {
|
||||
i: config.i,
|
||||
|
@ -57,7 +59,7 @@ homeStream.addEventListener('message', message => {
|
|||
});
|
||||
|
||||
invite(note.userId);
|
||||
}
|
||||
}, 3000);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue