fixing undefined twisterFollowingO issue in guest mode

This commit is contained in:
erqan 2014-05-13 18:32:48 +03:00
parent 2563ce1def
commit 114cc7866e

View File

@ -441,6 +441,9 @@ function fillWhoFollows(list, item, offset, size) {
}
function getWhoFollows(username, item) {
if (!defaultScreenName || typeof(defaultScreenName) === 'undefined')
return;
var list = whoFollows(username);
fillWhoFollows(list, item, 0, (list.length > 5 ? 5 : list.length));