1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-12 09:04:33 +02:00

* Don't log empty DeleteFiles DbCmds.

This commit is contained in:
Christian Muehlhaeuser
2011-05-19 08:21:26 +02:00
parent ab221b2344
commit 191dd48c87

View File

@@ -37,6 +37,9 @@ DatabaseCommand_DeleteFiles::postCommitHook()
{
qDebug() << Q_FUNC_INFO;
if ( !m_files.count() )
return;
// make the collection object emit its tracksAdded signal, so the
// collection browser will update/fade in etc.
Collection* coll = source()->collection().data();