We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1201b5b commit 6b8386dCopy full SHA for 6b8386d
src/libtomahawk/database/DatabaseCommand_AllTracks.cpp
@@ -142,12 +142,16 @@ DatabaseCommand_AllTracks::exec( DatabaseImpl* dbi )
142
artist, track, album,
143
duration, composer,
144
albumpos, discnumber );
145
+ if ( !t )
146
+ continue;
147
- if ( m_album || m_artist ) {
148
+ if ( m_album || m_artist )
149
t->loadAttributes();
- }
150
151
Tomahawk::result_ptr result = Tomahawk::Result::get( url, t );
152
+ if ( !result )
153
154
+
155
result->setSize( size );
156
result->setBitrate( bitrate );
157
result->setModificationTime( modificationTime );
0 commit comments