diff options
author | George Yunaev <oldnemesis@xbmc> | 2013-12-26 23:50:24 -0800 |
---|---|---|
committer | George Yunaev <oldnemesis@xbmc> | 2013-12-26 23:50:24 -0800 |
commit | c44214ad9af288be467747f06a22e20392f6de07 (patch) | |
tree | cba2ca2af23d6aca9e7a2160117378c1588780ea | |
parent | 808750b00766a64a31623aee5e7d5ca5ec1022db (diff) |
Fixed broken karaoke import due to change in songview
-rw-r--r-- | xbmc/music/MusicDatabase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/music/MusicDatabase.cpp b/xbmc/music/MusicDatabase.cpp index 492907ecb9..1a996fe2f0 100644 --- a/xbmc/music/MusicDatabase.cpp +++ b/xbmc/music/MusicDatabase.cpp @@ -5427,7 +5427,7 @@ void CMusicDatabase::ImportKaraokeInfo(const CStdString & inputFile) linestart = p + 1; CStdString strSQL=PrepareSQL("select idSong from songview " - "where strArtist like '%s' and strTitle like '%s'", artist, title ); + "where strArtists like '%s' and strTitle like '%s'", artist, title ); if ( !m_pDS->query(strSQL.c_str()) ) { |