Fix Archive FTP .zip filename not including monitor name. Fixes #3304
This commit is contained in:
parent
0edc91ffca
commit
e9845d96f4
|
@ -527,7 +527,7 @@ sub uploadArchFile {
|
|||
return(0);
|
||||
}
|
||||
|
||||
my $archFile = $Event->{MonitorName}.'-'.$Event->{Id};
|
||||
my $archFile = $Event->Monitor()->Name().'-'.$Event->{Id};
|
||||
my $archImagePath = $Event->Path()
|
||||
.'/'
|
||||
.(
|
||||
|
|
Loading…
Reference in New Issue