1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-15 03:06:56 +01:00

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

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 // Load some of the songs to show in the preview
for (const QString& filename : filenames) { for (const QString& filename : filenames) {
TagReaderClient::Instance()->ReadFileBlocking(song.basefilename(), &song); TagReaderClient::Instance()->ReadFileBlocking(filename, &song);
if (song.is_valid()) if (song.is_valid())
songs << song; songs << song;
} }