Quote:
Originally Posted by dbirosel
The /prune is working, but it displays a "Loading..." text. It suppose to say that the shoutbox has been cleared.
|
Good bug.
This:
Code:
for(var i = 0; i < matches.length; i++) {
Should be replaced with:
Code:
for(var i = 0; matches != null && i < matches.length; i++) {
Though this introduces a new bug, as I believe the "system response" date needs to be fixed so it's Timestamp has the correct timezone.
That I will try to work on tomorrow... or tonight, maybe.. hm.
I'll go edit my original post to reflect this.