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

* Fixed sorting order when retrieving playback history.

This commit is contained in:
Christian Muehlhaeuser
2012-05-22 10:41:58 +02:00
parent b1904b877e
commit 3f5d219549

View File

@@ -56,7 +56,7 @@ DatabaseCommand_TrackStats::exec( DatabaseImpl* dbi )
query.prepare( "SELECT * " query.prepare( "SELECT * "
"FROM playback_log " "FROM playback_log "
"WHERE track = ?" ); "WHERE track = ? ORDER BY playtime ASC" );
query.addBindValue( trkid ); query.addBindValue( trkid );
query.exec(); query.exec();
} }