Skip to content

Commit

Permalink
filehandle object default filename_override function should pull in o…
Browse files Browse the repository at this point in the history
…wner file object filename_override.

This caused ripped CDs to not be able to play if they had been looked up in discid-database online.
  • Loading branch information
mywave82 committed Feb 4, 2024
1 parent 41b243c commit a878c36
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions filesel/filesystem.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ const char *ocpfile_t_fill_default_filename_override (struct ocpfile_t *file)

const char *ocpfilehandle_t_fill_default_filename_override (struct ocpfilehandle_t *fh)
{
if (fh->origin)
{
return fh->origin->filename_override (fh->origin);
}
return 0;
}

Expand Down

0 comments on commit a878c36

Please sign in to comment.