Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Cifko committed Sep 28, 2023
1 parent c0fdc6d commit bea6e60
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,7 @@ def http_indexer(self, index: int) -> Optional[str]:
return None

def http_connector(self) -> str:
return f"http://{local_ip}:{self.tari_connector_sample.http_port}"
try:
return f"http://{local_ip}:{self.tari_connector_sample.http_port}"
except:
return ""

0 comments on commit bea6e60

Please sign in to comment.