diff --git a/plot/show.v b/plot/show.v index 9e3e84729..c6a3d51cb 100644 --- a/plot/show.v +++ b/plot/show.v @@ -48,11 +48,7 @@ pub fn (plot Plot) show() ! { for server.status() != .running { time.sleep(10 * time.millisecond) } - mut uri := 'http://${server.addr}' - for ip in ['0.0.0.0', '127.0.0.1'] { - uri = uri.replace(ip, 'localhost') - } - os.open_uri(uri)! + os.open_uri('http://${server.addr}')! t.wait() } }