Skip to content
Snippets Groups Projects
Commit 2277c987 authored by Andreas Romeyke's avatar Andreas Romeyke
Browse files

- fixed wrong subst for SIP id

parent 54c158d9
No related branches found
No related tags found
No related merge requests found
......@@ -215,7 +215,7 @@ sub trace_log {
if (! m/$searchid/) {next;}
chomp;
if ( m/$line_rx1/ ) {
if (!defined $sip_id and m/$sip_rx(\d{6}),/) { $sip_id = "SIP" . $2; }
if (!defined $sip_id and m/$sip_rx(\d{6}),/) { $sip_id = $2; }
if (!defined $deposit_dir and m/originalDirName=([^,]*),/) { $deposit_dir = $1; }
if (!defined $deposit_id and m/depositId=(\d{6}),/) { $deposit_id = $1;}
} elsif (m/$line_rx2/) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment