mirror of
https://github.com/reality/dbot.git
synced 2024-12-25 04:02:39 +01:00
fix offline notifies
This commit is contained in:
parent
99eb1462ad
commit
eb0a61c25b
@ -54,11 +54,11 @@ var report = function(dbot) {
|
|||||||
pending = this.pending[event.rUser.id];
|
pending = this.pending[event.rUser.id];
|
||||||
|
|
||||||
var notifyUser = function(pending) {
|
var notifyUser = function(pending) {
|
||||||
if(i >= msg.length) {
|
if(i >= pending.length) {
|
||||||
delete this.pending[event.rUser.id];
|
delete this.pending[event.rUser.id];
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
dbot.say(event.server, pending[i], message);
|
dbot.say(event.server, event.user, pending[i]);
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
i++; notifyUser(pending);
|
i++; notifyUser(pending);
|
||||||
}, 1000);
|
}, 1000);
|
||||||
|
Loading…
Reference in New Issue
Block a user