statusnet/conversation showing empty objects
The problem
When doing a GET request to that function, like this (it's a real post id):
curl https://quitter.se/api/statusnet/conversation/5310834.atom
It returns nothing.
Tracking the bug
The last working commit is c67b89e5. It breaks on 5f7032df, when "Verify[ing] that authenticated API calls are made from our domain name."
Solution
Changing lib/apiauthaction.php from:
if (common_logged_in() && common_local_referer()) {
to:
if (common_logged_in()) {
I think that's all.