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:
parent
8c10bdfb07
commit
22e2800e9e
@ -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() );
|
||||
|
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user