From 35706f16f75438b57c9a6e855e6d4a3ebf79fb76 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Sun, 11 Mar 2012 12:11:17 -0400 Subject: [PATCH] Remove assert as it hits of synchrotron is down, no fun --- src/libtomahawk/accounts/AccountModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/accounts/AccountModel.cpp b/src/libtomahawk/accounts/AccountModel.cpp index b76e327d1..8cff9950d 100644 --- a/src/libtomahawk/accounts/AccountModel.cpp +++ b/src/libtomahawk/accounts/AccountModel.cpp @@ -121,7 +121,7 @@ AccountModel::loadData() foreach ( Account* acct, allAccounts ) { qDebug() << "Resolver is left over:" << acct->accountFriendlyName(); - Q_ASSERT( !qobject_cast< AtticaResolverAccount* >( acct ) ); // This should be caught above in the attica list +// Q_ASSERT( !qobject_cast< AtticaResolverAccount* >( acct ) ); // This should be caught above in the attica list if ( qobject_cast< ResolverAccount* >( acct ) && !qobject_cast< AtticaResolverAccount* >( acct ) ) m_accounts << new AccountModelNode( qobject_cast< ResolverAccount* >( acct ) );