commit 08f64abc5602440959120bf1d58f91224e1d3bc7 parent 0770b2c5751a17d5856860089af6d470a7ef9795 Author: rbckman <rob@tarina.org> Date: Sat, 22 Aug 2026 12:40:54 +0300 ok Diffstat:
| M | server.py | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/server.py b/server.py @@ -1889,7 +1889,8 @@ class pull: postdict={} print(posts) for p in posts: - postdict.update({p['postid']:{'postid': p['postid'], 'name': p['name']}}) + l=loadjson('p/posts/'+p+'/meta') + postdict.update({l['postid']:{'postid': l['postid'], 'name': l['creator']}}) web.header('Content-Type', 'application/json') return json.dumps(postdict) else: