Fixed assert statement.

This commit is contained in:
hiker 2014-10-08 08:25:42 +11:00
parent 4ff00018b4
commit 17fd8df935

View File

@ -297,7 +297,7 @@ void OnlineProfile::deleteRelationalInfo()
const OnlineProfile::IDList& OnlineProfile::getFriends()
{
assert(m_has_fetched_friends &&
(m_state & S_FETCHING_FRIENDS) != 0);
(m_state & S_FETCHING_FRIENDS) == 0);
return m_friends;
} // getFriends