From 48c65cc3d47196d6fb9436bfcb635a3f92ce2b88 Mon Sep 17 00:00:00 2001
From: Greg Fodor <gfodor@gmail.com>
Date: Mon, 17 Sep 2018 22:04:31 +0000
Subject: [PATCH] Remove use of pushUnreliable API

---
 src/hub.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/hub.js b/src/hub.js
index 150b8f104..d9f4ef870 100644
--- a/src/hub.js
+++ b/src/hub.js
@@ -421,7 +421,7 @@ const onReady = async () => {
           payload.clientId = clientId;
         }
 
-        hubChannel.channel.pushUnreliable("naf", { payload });
+        hubChannel.channel.push("naf", { payload });
       };
 
       NAF.connection.adapter.reliableTransport = sendHubDataMessage;
-- 
GitLab