db/update/Archive: remove useless log message

This commit is contained in:
Max Kellermann 2023-04-30 08:39:29 +02:00
parent 4d357ab77c
commit 75a39ed279
1 changed files with 1 additions and 4 deletions

View File

@ -65,11 +65,8 @@ UpdateWalk::UpdateArchiveTree(ArchiveFile &archive, Directory &directory,
//create directories first
UpdateArchiveTree(archive, *subdir, tmp + 1);
} else {
if (StringIsEmpty(name)) {
LogWarning(update_domain,
"archive returned directory only");
if (StringIsEmpty(name))
return;
}
//add file
Song *song = LockFindSong(directory, name);