From 5c11a0fcba9c214a4af3b76df280a3a9ed5a2d7c Mon Sep 17 00:00:00 2001 From: lemonslut Date: Sat, 7 Jun 2025 22:19:30 -0600 Subject: [PATCH] eslint: comment out empty onEnable method --- src/socket.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/socket.js b/src/socket.js index cf4f9c6b..90fbc3f2 100644 --- a/src/socket.js +++ b/src/socket.js @@ -125,14 +125,14 @@ export default class SocketClient extends Module { } - onEnable() { - // We don't connect anymore. - // For now, stop connecting to the sockets for people using the - // API links experiment. - //if ( this.experiments.getAssignment('api_links') ) - // return; - //this.connect(); - } + // onEnable() { + // We don't connect anymore. + // For now, stop connecting to the sockets for people using the + // API links experiment. + // if ( this.experiments.getAssignment('api_links') ) + // return; + // this.connect(); + // } onDisable() { this.disconnect() }