| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Be more strict in not retrying on permanent errors. | 2023-08-09 | 1 | -2/+2 | ||
| | | ||||||
| * | Renamed json dump functions to new xs spec. | 2023-08-08 | 1 | -2/+2 | ||
| | | ||||||
| * | Fixed votersCount. | 2023-08-08 | 1 | -2/+7 | ||
| | | ||||||
| * | Limited users can announce our own posts. | 2023-08-07 | 1 | -4/+4 | ||
| | | ||||||
| * | Some fixes to limiting actors. | 2023-08-07 | 1 | -21/+22 | ||
| | | ||||||
| * | Added command-line interface for limit/unlimit users. | 2023-08-06 | 1 | -1/+1 | ||
| | | ||||||
| * | Drop announces from limited users. | 2023-08-06 | 1 | -0/+3 | ||
| | | ||||||
| * | Fixed a log message level. | 2023-08-02 | 1 | -1/+1 | ||
| | | ||||||
| * | Fixed outbox to be an OrderedCollection of Create+Note, not Note. | 2023-07-29 | 1 | -3/+4 | ||
| | | ||||||
| * | msg_create() is of type @wrapper. | 2023-07-29 | 1 | -1/+11 | ||
| | | | | | This means that it also generate the same id for the same Note. | |||||
| * | Updated comment in headers. | 2023-07-28 | 1 | -1/+1 | ||
| | | ||||||
| * | Deleted a comment that is no longer true. | 2023-07-24 | 1 | -5/+0 | ||
| | | ||||||
| * | Improved Accept + implicit Follow code. | 2023-07-24 | 1 | -1/+12 | ||
| | | ||||||
| * | Added support for Accept objects that only provide an object id. | 2023-07-24 | 1 | -2/+4 | ||
| | | | | | This allows following Guppe groups. | |||||
| * | Increased recursion level for timeline_request(). | 2023-07-18 | 1 | -3/+2 | ||
| | | ||||||
| * | Avoid incomplete messages in timeline_request(). | 2023-07-15 | 1 | -0/+3 | ||
| | | ||||||
| * | Use the right object id when storing Announce + Create + Note objects. | 2023-07-14 | 1 | -3/+5 | ||
| | | ||||||
| * | Increased log level for Announce error requests. | 2023-07-13 | 1 | -1/+1 | ||
| | | ||||||
| * | Added support for the 'Page' ActivityPub object. | 2023-07-13 | 1 | -7/+21 | ||
| | | | | | So that you can follow and interact with lemmy channels. | |||||
| * | Added a maximum level of recursion to timeline_request(). | 2023-07-13 | 1 | -7/+8 | ||
| | | ||||||
| * | Always log send status in post_message(). | 2023-07-13 | 1 | -4/+5 | ||
| | | ||||||
| * | New function post_message(), to send a message bypassing the output queue. | 2023-07-13 | 1 | -2/+17 | ||
| | | | | | | | | This is used when accepting Follow requests; this way, follows are confirmed as fast as possible. If the message cannot be immediately sent, it's queued as always. | |||||
| * | Minor prototype tweak. | 2023-07-13 | 1 | -2/+3 | ||
| | | ||||||
| * | activitypub.c: Remove unused variable. | 2023-07-12 | 1 | -1/+0 | ||
| | | ||||||
| * | Fixed weird prototype of process_tags(). | 2023-07-04 | 1 | -5/+6 | ||
| | | ||||||
| * | The actor bio now accepts tags. | 2023-07-04 | 1 | -1/+4 | ||
| | | ||||||
| * | More unfollow notification tweaks. | 2023-07-04 | 1 | -1/+4 | ||
| | | ||||||
| * | Also show unfollows in the notification area. | 2023-07-04 | 1 | -1/+1 | ||
| | | ||||||
| * | Call is_instance_blocked() from activitypub_post_handler(). | 2023-06-29 | 1 | -2/+11 | ||
| | | ||||||
| * | Increased log level for 'not for us' messages. | 2023-06-26 | 1 | -1/+1 | ||
| | | ||||||
| * | Defend from kbin.social messages not having a content-type header. | 2023-06-19 | 1 | -0/+3 | ||
| | | ||||||
| * | Increased debug level for NOT collecting inboxes. | 2023-06-16 | 1 | -1/+1 | ||
| | | ||||||
| * | Added a comment about Announces of non-Notes. | 2023-06-11 | 1 | -0/+5 | ||
| | | ||||||
| * | No more archiving of borked Likes. | 2023-06-11 | 1 | -6/+0 | ||
| | | ||||||
| * | Also reject Like messages in is_msg_for_me(). | 2023-06-11 | 1 | -1/+5 | ||
| | | ||||||
| * | Log malformed Likes from wafrn.net (who else?). | 2023-06-11 | 1 | -0/+6 | ||
| | | ||||||
| * | Fixed comment. | 2023-06-11 | 1 | -1/+1 | ||
| | | ||||||
| * | Disable `timeline_request_replies()` temporarily. | 2023-06-11 | 1 | -0/+9 | ||
| | | ||||||
| * | Use a different variable name to store the id of 'embedded' children. | 2023-06-11 | 1 | -3/+3 | ||
| | | ||||||
| * | New function enqueue_request_replies(). | 2023-06-07 | 1 | -4/+9 | ||
| | | | | | | | This way, the (potentially expensive and slow) call to timeline_request_replies() is detached from actions like replying a message from the web ui. | |||||
| * | Changed timeline_request_replies() to receive an id and not an object. | 2023-06-07 | 1 | -5/+9 | ||
| | | ||||||
| * | New function timeline_request_replies(). | 2023-06-07 | 1 | -7/+67 | ||
| | | | | | | | | | | | This function downloads and stores all replies to a message, recursively. Increases traffic. Mastodon instances request the user actor again and again without caching (when the 'replies' Collection is downloaded). Maybe I'm not doing something correctly? | |||||
| * | Also accept Update + Service messages. | 2023-06-04 | 1 | -1/+1 | ||
| | | ||||||
| * | If a user config field 'bot' is set to true, identies as such. | 2023-06-04 | 1 | -0/+4 | ||
| | | ||||||
| * | Updated some data types. | 2023-06-04 | 1 | -21/+21 | ||
| | | ||||||
| * | More notify tweaks (I'm getting sick of this). | 2023-06-02 | 1 | -6/+21 | ||
| | | ||||||
| * | Fixed bug in notify() (the poll id was not set). | 2023-06-02 | 1 | -1/+1 | ||
| | | ||||||
| * | Fixed bug in vote discarding in notify(). | 2023-06-02 | 1 | -1/+3 | ||
| | | ||||||
| * | Disallow empty or repeated options in msg_question(). | 2023-06-01 | 1 | -10/+21 | ||
| | | ||||||
| * | Fixed typo in notify(). | 2023-06-01 | 1 | -1/+1 | ||
| | | ||||||