Nutomic
Nutomic
@renegadespork The fix to use mimalloc only on x86 is not in 0.19.12 so please try with `0.19.13-beta.1` instead.
@Die4Ever Try running a lemmy process with `--disable-http-server --disable-activity-sending` so it only runs scheduled tasks. Then see if there is anything in the logs. May have to increase the log...
This is intentional, without this check a malicious instance could spam you with hundreds of posts and comments. But the check could probably be relaxed to accept activities from instances...
The different `*Action` structs come from https://github.com/LemmyNet/lemmy/pull/4459. Basically instead of separate tables `post_like`, `post_hide`, `post_saved` etc which all have similar data, these are merged into a single `post_actions` table. Same...
Here is one way to simplify the api: Instead of returning `CommunityActions` etc exactly like they are stored in the api, we could lift out the individual fields and move...
This should be resolved now as `creator_*` fields are removed in https://github.com/LemmyNet/lemmy/pull/5808. Other action fields make sense.
> The current format of emails sent for denied applications does not work with reasons in multiple lines, it looks like this: Thats because its inserting plaintext into html. I...
Both live updates and different key type should be possible by providing our own `Backend` and `Input` implementations, which can live in Lemmy code or be merged into the library....
Live updates are working, and added support for live updates to the library (as well as some fixes). [Here](https://github.com/jacob-pro/actix-extensible-rate-limit/pull/8) is the upstream PR.
The upstream PR is not merged yet so this will probably require some further changes in another PR.