1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00

Fix an issue subscribing to topics when a socket first connects.

This commit is contained in:
SirStendec 2018-03-14 17:32:19 -04:00
parent efbc9f808f
commit 96b03290c8

View file

@ -223,7 +223,7 @@ export default class SocketClient extends Module {
// Subscribe to Topics
for(const topic of this._topics)
for(const topic of this._topics.keys())
this._send('sub', topic);