From 0653dbde04d2a1ad1115ae2a7e17a7ac756f15e1 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Wed, 21 Apr 2021 20:17:33 -0400 Subject: [PATCH] update notification websocket to sockety --- ui/redux/actions/websocket.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/redux/actions/websocket.js b/ui/redux/actions/websocket.js index 85032f53c..addf4247f 100644 --- a/ui/redux/actions/websocket.js +++ b/ui/redux/actions/websocket.js @@ -2,7 +2,7 @@ import * as ACTIONS from 'constants/action_types'; import { getAuthToken } from 'util/saved-passwords'; import { doNotificationList } from 'redux/actions/notifications'; -const NOTIFICATION_WS_URL = 'wss://api.lbry.com/subscribe?auth_token='; +const NOTIFICATION_WS_URL = 'wss://sockety.lbry.com/ws/internal?id='; const COMMENT_WS_URL = 'wss://sockety.lbry.com/ws/commentron?id='; let sockets = {};