neharob / hotot

Automatically exported from code.google.com/p/hotot
0 stars 0 forks source link

Followers and friends don't appear on profile page - Identica #283

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hi,

Following the issue 278, yes it is a very great idea to put favs in the profile 
page.

For some time, there was a "mix" between Twitter and Identica info / stat 
profile, but now the two are well separated and appear correctly, idem for favs 
and tweet.

Only, on Identica account, no followers and friends appear, list shown is 
empty, it works well on Twitter.

Great to see Hotot improving day after day !

Original issue reported on code.google.com by Valerya...@gmail.com on 20 Feb 2011 at 6:31

Attachments:

GoogleCodeExporter commented 9 years ago

Original comment by 5h3l...@gmail.com on 26 Feb 2011 at 5:39

GoogleCodeExporter commented 9 years ago
In ui.main.js,
In functions load_people_success() and loadmore_people_success(),
is called

ui.Main.add_people(self, json.users)

but json from statusnet is not a dict with key 'users', but a list of "user" 
dict

[{'id':123,'name':'John'} , {'id':321, 'name':'Jean'}]

Is consistent with other API and I think als Twitter should work like this (I 
don't have Twitter account to test)

replacing that line with

ui.Main.add_people(self, json)

shows friends and followers

(Is in the XML where the root element is "<users>")

Original comment by fabrix...@gmail.com on 19 Aug 2011 at 12:53

GoogleCodeExporter commented 9 years ago
move to https://github.com/shellex/Hotot/issues/9

Original comment by 5h3l...@gmail.com on 7 Oct 2011 at 12:43