From 43f2525fdf9af570128fa68ba32c79b1f126b9a3 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Mon, 22 Dec 2025 09:49:37 -0500 Subject: [PATCH] Fix setting authority clearing host --- scripts/zmtelemetry.pl.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/zmtelemetry.pl.in b/scripts/zmtelemetry.pl.in index 8bea25686..2d3e55150 100644 --- a/scripts/zmtelemetry.pl.in +++ b/scripts/zmtelemetry.pl.in @@ -303,8 +303,7 @@ sub getMonitorRef { foreach my $monitor (@{$arrayref}) { next if $$monitor{Type} eq 'Local'; my $uri = URI->new($$monitor{Path}); - $uri->host('host') if $uri->host(); - $uri->authority('username:password') if $uri->authority(); + $uri->authority('username:password@host'); $$monitor{Path} = $uri->as_string(); }