From 12a861140ea92151f4dc0f4ec042107779f9e467 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20=C3=96nnerby?= Date: Sun, 11 May 2008 21:47:29 +0000 Subject: [PATCH] Fixed bug that made "now playing" not query for metadata sometimes. --- src/core/tracklist/Standard.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/tracklist/Standard.cpp b/src/core/tracklist/Standard.cpp index 918d1f86b..b511b61f5 100644 --- a/src/core/tracklist/Standard.cpp +++ b/src/core/tracklist/Standard.cpp @@ -224,6 +224,7 @@ void Standard::RemoveRequestedMetakey(const char* metakey){ void Standard::CopyTracks(musik::core::tracklist::IRandomAccess &tracklist){ if(this!=&tracklist){ // Do not copy to itself + this->trackCache.clear(); this->SetLibrary(tracklist.Library()); this->tracks.clear(); this->tracks.reserve(tracklist.Size());