From 205e0b71e436e85eac396b875bc317d031974660 Mon Sep 17 00:00:00 2001 From: Arsen Musayelyan Date: Fri, 3 Jun 2022 14:36:34 -0700 Subject: [PATCH] Actually skip LRPCChannel.close() this time --- client/web/lrpc.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/client/web/lrpc.rb b/client/web/lrpc.rb index e6786f1..05eadca 100644 --- a/client/web/lrpc.rb +++ b/client/web/lrpc.rb @@ -145,6 +145,7 @@ class LRPCChannel # close closes the channel. This should not be called by the # consumer of the channel. Use done() instead. def close() + return if @closed fn = @onClose fn() @closed = true