Fixes and tidying up the server side of the sockets

This commit is contained in:
Martin Donnelly 2020-08-20 15:34:55 +01:00
parent a8b3e27038
commit 13b905e1f5
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -74,7 +74,7 @@ exports.updates = (newEmitter) => {
eventEmitter = newEmitter; eventEmitter = newEmitter;
buildList(); buildList();
setInterval(() => { setTimeout(() => {
startTweetUpdates(); startTweetUpdates();
}, 30000); }, 30000);
}; };