mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-04-04 16:12:24 +02:00
* Ignore result-hint if source is currently offline & try to resolve again.
* Fixed crash related to result hints.
This commit is contained in:
parent
2ce7e76d95
commit
b795b0cf02
@ -24,8 +24,9 @@ DatabaseCommand_Resolve::exec( DatabaseImpl* lib )
|
||||
qDebug() << "Using result-hint to speed up resolving:" << m_query->resultHint();
|
||||
|
||||
Tomahawk::result_ptr result = lib->result( m_query->resultHint() );
|
||||
if ( !result.isNull() )
|
||||
if ( !result.isNull() && result->collection()->source()->isOnline() )
|
||||
{
|
||||
res << result;
|
||||
emit results( m_query->id(), res );
|
||||
return;
|
||||
}
|
||||
|
@ -459,7 +459,7 @@ DatabaseImpl::result( const QString& url )
|
||||
{
|
||||
TomahawkSqlQuery query = newquery();
|
||||
Tomahawk::source_ptr s;
|
||||
Tomahawk::result_ptr res;
|
||||
Tomahawk::result_ptr res = Tomahawk::result_ptr( new Tomahawk::Result() );
|
||||
QString fileUrl;
|
||||
|
||||
if ( url.contains( "servent://" ) )
|
||||
@ -539,6 +539,7 @@ DatabaseImpl::result( const QString& url )
|
||||
res->setAlbumPos( query.value( 14 ).toUInt() );
|
||||
res->setRID( uuid() );
|
||||
res->setId( query.value( 9 ).toUInt() );
|
||||
res->setCollection( s->collection() );
|
||||
}
|
||||
|
||||
return res;
|
||||
|
Loading…
x
Reference in New Issue
Block a user