Skip to content

Commit

Permalink
Enable serial detection from GDI files. (#16171)
Browse files Browse the repository at this point in the history
  • Loading branch information
zoltanvb authored Jan 28, 2024
1 parent c4c1fb1 commit 00d01c8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tasks/task_database.c
Original file line number Diff line number Diff line change
Expand Up @@ -614,9 +614,7 @@ static int task_database_iterate_playlist(
case FILE_TYPE_GDI:
gdi_prune(db, name);
db_state->serial[0] = '\0';
/* There are no serial databases, so don't bother with
serials at the moment */
if (0 && task_database_gdi_get_serial(name, db_state->serial, sizeof(db_state->serial)))
if (task_database_gdi_get_serial(name, db_state->serial, sizeof(db_state->serial)))
db->type = DATABASE_TYPE_SERIAL_LOOKUP;
else
{
Expand Down

0 comments on commit 00d01c8

Please sign in to comment.