Föderation · Mi 12.03.2025 20:22:29 @grunfink@comam.es Hello, Grünfink, I've been facing an issue where friends from different instances (Pleroma mostly?) appear to unfollow me, but they confirm that they really didn't. I suspect commit e9f391e "Added a special check for Undo + Follow.", in which activitypub.c is modified as follows: if (strcmp(type, "Undo") == 0) { /** **/It seems that it treats all messages of type 'Undo', where 'object' is not a dict, to be a utype 'Follow' by default. But that does not seem to be necessarily correct; there are messages that are not like that. This notification JSON for example shows a message that was likely overridden to be utype 'Follow', but originally wasn't. I confirmed with friendo that they didn't unfollow me. My account is not even in the 'to' field, which is a thing I noticed with all such mistaken unfollows (I have some 5 or 6 so far, in a few days): https://dreamscape.link/vault/public/debug/snac2/1741791872.179863.json Compare with this object, which is a real Pleroma unfollow I intentionally made: https://dreamscape.link/vault/public/debug/snac2/1741805474.188476.json Any thoughts or ideas? I'm familiar with C, but not enough with ActivityPub to know what is happening in this case. A quick solution that comes to mind, based on the handful of objects I've seen so far, is to check whether we're in the 'to' field before overriding the utype, but I have no idea why this whole utype override exists in the first place. |
Föderation · Mi 12.03.2025 21:58:15 @grunfink@comam.es I created this patch[1], which logs some debug info when the utype override happens, and changes the conditional logic to require "msg.object.object" to be equal to snac->actor before deleting an unfollower. I deployed this change on my instance, and tested it with real unfollows from Pleroma, Mastodon, and snac2, it still works okay. I have no way to test it with the "false" unfollows because I don't know what exactly triggers them. |
Föderation · Do 13.03.2025 12:49:00 Hi again. I've gathered some time to look at this issue more deeply and, though I also can't imagine what is causing the spurious unfollow, your patch improves the process logic, so I'll merge it. |
Föderation · Do 13.03.2025 12:00:56 Hi. Thanks for bringing this to my attention. |