From e8f2eedcb96cf824af97e2d245bb31b95bf517b1 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Sun, 1 May 2011 15:30:15 +0200 Subject: [PATCH] * Don't assert on unknown sources, but print out debug. --- src/libtomahawk/database/databasecommand_resolve.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/database/databasecommand_resolve.cpp b/src/libtomahawk/database/databasecommand_resolve.cpp index 7e474c06f..7af53ba26 100644 --- a/src/libtomahawk/database/databasecommand_resolve.cpp +++ b/src/libtomahawk/database/databasecommand_resolve.cpp @@ -119,7 +119,7 @@ DatabaseCommand_Resolve::exec( DatabaseImpl* lib ) s = SourceList::instance()->get( files_query.value( 13 ).toUInt() ); if( s.isNull() ) { - Q_ASSERT( false ); + qDebug() << "WTF: Could not find source" << files_query.value( 13 ).toUInt(); continue; }