Fix substring initial offset value

Remove only the leading comma character.
This commit is contained in:
Roan Horning 2024-10-08 21:49:58 -04:00
parent 8b277607cf
commit 85d43851d1
Signed by: rho_n
GPG Key ID: 234AEF20B72D5769

View File

@ -323,7 +323,7 @@ sub get_ids_from_db {
|| die $tt->error(), "\n"; || die $tt->error(), "\n";
# Starts with a newline and comma # Starts with a newline and comma
return split(/,/, substr($selected_ids, 2)); return split(/,/, substr($selected_ids, 1));
} }
sub get_filename { sub get_filename {