From 306f98b31024880d6e63fadaaed2174a655d02a3 Mon Sep 17 00:00:00 2001 From: gsd Date: Sat, 29 Jun 2024 23:41:52 +0300 Subject: [PATCH] connect fix --- .../TabsMenuElements/ServersView/Components/ServerFullInfo.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/TabsMenuElements/ServersView/Components/ServerFullInfo.vue b/src/components/TabsMenuElements/ServersView/Components/ServerFullInfo.vue index ad86181..5bf81e8 100644 --- a/src/components/TabsMenuElements/ServersView/Components/ServerFullInfo.vue +++ b/src/components/TabsMenuElements/ServersView/Components/ServerFullInfo.vue @@ -113,7 +113,7 @@ export default { }, onMove(select){ switch (select) { - case 'steam': return window.open(`steam://${this.serverInfo['address']}`, '_self').focus(); + case 'steam': return window.open(`steam://${this.serverInfo['ip']}`, '_self').focus(); case 'workshop': return window.open(this.serverData['workshop'], '_blank').focus(); case 'fastdl': return window.open(`https://tf2.pblr-nyk.pro/tf/maps/${this.serverInfo['map']}.bsp.bz2`, '_blank').focus(); }