diff options
Diffstat (limited to 'src/inputPlugins/mp3_plugin.c')
-rw-r--r-- | src/inputPlugins/mp3_plugin.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/inputPlugins/mp3_plugin.c b/src/inputPlugins/mp3_plugin.c index 33087e134..8799e1c87 100644 --- a/src/inputPlugins/mp3_plugin.c +++ b/src/inputPlugins/mp3_plugin.c @@ -756,6 +756,9 @@ MpdTag * mp3_tagDup(char * file) { if(!ret) ret = newMpdTag(); ret->time = time; } + else { + DEBUG("mp3_tagDup: Failed to get total song time from: %s\n", file); + } return ret; } |