Closed christianbundy closed 5 years ago
189 setupConnectionListeners() {
190 pull(this.conn.hub().listen(), pull.drain((ev) => {
191 if (ev.type === 'connecting-failed')
192 this.onConnectingFailed(ev);
193 if (ev.type === 'connected')
194 this.onConnected(ev);
195 if (ev.type === 'disconnected')
196 this.onDisconnected(ev);
197 }));
198 }
Oops. TIL secret-stack plugins can be arrays (!). Sorry for the noise.
I think I found a bug by shuffling my secret-stack plugins.