From 500120e17c475122eb7f635de63ce196c2365b4b Mon Sep 17 00:00:00 2001 From: Nicolas Date: Sat, 16 Jun 2018 17:57:58 -0300 Subject: [PATCH] Delete song from sqlite cache instead of text index --- src/Song.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Song.cpp b/src/Song.cpp index 6c2290f244..285bd4e621 100644 --- a/src/Song.cpp +++ b/src/Song.cpp @@ -393,6 +393,7 @@ bool Song::ReloadFromSongDir( const RString &sDir ) // Remove the cache file to force the song to reload from its dir instead // of loading from the cache. -Kyz FILEMAN->Remove(GetCacheFilePath()); + SONGINDEX.DeleteSongFromDBByDir(sDir.c_str()); vector vOldSteps = m_vpSteps;