Merge branch 'release-1.36' of github.com:ZoneMinder/zoneminder into release-1.36

pull/4202/head
Isaac Connor 2023-10-31 10:13:52 -04:00
commit f6100f9f79
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ if ( $check && $Config{ZM_CHECK_FOR_UPDATES} ) {
my $ua = LWP::UserAgent->new;
$ua->agent('ZoneMinder Update Agent/'.ZM_VERSION);
if ( $Config{ZM_UPDATE_CHECK_PROXY} ) {
$ua->proxy('http', $Config{ZM_UPDATE_CHECK_PROXY});
$ua->proxy('https', $Config{ZM_UPDATE_CHECK_PROXY});
}
my $req = HTTP::Request->new(GET=>'https://update.zoneminder.com/version.txt');
my $res = $ua->request($req);