Comment 9 for bug 414572

Revision history for this message
D. Wegener (dpwegener) wrote :

The fix does not solve the problem of missing friend tweets. The wrong query string is still being used in the downloadHistory method in microblog.cpp. The code should look something like this.
if (m_password.isEmpty()) {
    query = Qstring("NoAuth:%1@2");
} else if (m_includeFriends) {
    query = QString("TimelineWithFriends:%1@2");
} else {
    query = QString("Timeline:%1@2");
}