1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-05 00:22:31 +02:00

* Fixed two bugs I introduced with my last commit.

This commit is contained in:
Christian Muehlhaeuser 2011-06-12 06:19:03 +02:00
parent 8c10bdfb07
commit 22e2800e9e
2 changed files with 4 additions and 3 deletions

View File

@ -173,7 +173,7 @@ DatabaseCommand_Resolve::resolve( DatabaseImpl* lib )
float score = how_similar( m_query, result );
result->setScore( score );
if ( m_query->fullTextQuery().isEmpty() && score < MINSCORE )
if ( score < MINSCORE )
continue;
result->setCollection( s->collection() );

View File

@ -50,7 +50,7 @@ DatabaseImpl::DatabaseImpl( const QString& dbname, Database* parent )
bool schemaUpdated = false;
int version = getDatabaseVersion( dbname );
if ( version != CURRENT_SCHEMA_VERSION )
if ( version > 0 && version != CURRENT_SCHEMA_VERSION )
{
QString newname = QString( "%1.v%2" ).arg( dbname ).arg( version );
qDebug() << endl << "****************************" << endl;
@ -87,7 +87,8 @@ DatabaseImpl::DatabaseImpl( const QString& dbname, Database* parent )
throw "failed to open db"; // TODO
}
schemaUpdated = updateSchema( 0 );
if ( version < 0 )
schemaUpdated = updateSchema( 0 );
}
TomahawkSqlQuery query = newquery();