My fault, was testing something and forgoten to replace song.basefilename()

This commit is contained in:
Krzysztof A. Sobiecki 2014-01-30 15:08:53 +01:00
parent 361cca83cb
commit e244c9cfb2
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ int OrganiseDialog::SetFilenames(const QStringList& filenames, quint64 total_siz
// Load some of the songs to show in the preview
for (const QString& filename : filenames) {
TagReaderClient::Instance()->ReadFileBlocking(song.basefilename(), &song);
TagReaderClient::Instance()->ReadFileBlocking(filename, &song);
if (song.is_valid())
songs << song;
}