Skip to content
Snippets Groups Projects
Commit 35ada037 authored by inso's avatar inso
Browse files

Fix bug with open in browser action

parent 3b6f41fe
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,7 @@ class NetworkTabWidget(QWidget, Ui_NetworkTabWidget):
def open_node_in_browser(self):
node = self.sender().data()
peering = bma.network.Peering(node.endpoint.conn_handler())
url = QUrl(peering.reverse_url("/peering"))
url = QUrl(peering.reverse_url("http", "/peering"))
QDesktopServices.openUrl(url)
def manual_nodes_refresh(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment