1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-11 00:24:12 +02:00

* Fixed cached resolving.

(cherry picked from commit bd098e3ff2)
This commit is contained in:
Christian Muehlhaeuser
2012-03-17 05:49:43 +01:00
committed by Leo Franchi
parent e5bdd2242f
commit 95f1162b6e

View File

@@ -147,6 +147,7 @@ DatabaseCommand_Resolve::resolve( DatabaseImpl* lib )
if ( result->isValid() ) if ( result->isValid() )
{ {
qDebug() << "Result already cached:" << result->toString(); qDebug() << "Result already cached:" << result->toString();
res << result;
continue; continue;
} }
@@ -284,6 +285,7 @@ DatabaseCommand_Resolve::fullTextResolve( DatabaseImpl* lib )
if ( result->isValid() ) if ( result->isValid() )
{ {
qDebug() << "Result already cached:" << result->toString(); qDebug() << "Result already cached:" << result->toString();
res << result;
continue; continue;
} }