Nutomic
Nutomic
Feel free to make a pull request. The file is here: https://github.com/LemmyNet/lemmy-docs/blob/main/src/users/02-media.md
Lemmy should never fetch anything from an HTTP URL in production mode, this is checked [here](https://github.com/LemmyNet/activitypub-federation-rust/blob/main/src/config.rs#L144). And [here](https://github.com/LemmyNet/activitypub-federation-rust/blob/0.5.1-beta.1/src/fetch/mod.rs) is the relevant fetch code used by Lemmy 0.19.3 which correctly calls...
Most of these should be fixed by the url equality check I linked above. The remaining ones all seem to be caused by instances or users being deleted and then...
True, that is a simplification to improve usability. Lemmy itself has duplicate usernames when seen from other platforms, as you can have both actors /u/test and /c/test with the same...
A database constraint is not an ideal solution for federation because there can legitimately be multiple accounts with the same name and with their own post histories (eg instance deleted...
Friendica sends the link in `content` and `url` fields. The use of `url` for this purpose was deprecated in Lemmy long ago (https://github.com/LemmyNet/lemmy/pull/2182) because it is not standard compliant as...
We should also assure that types stay the same, eg an int field does not become a string. Adding fields is fine for the Android client.
The logs dont show anything relevant. Try it like this: - Filter logs: `docker compose logs --tail=100 -f lemmy | grep diablo -C 10` - Then paste the community url...
That log is not enough, it doesnt show the actual error message. Try with `grep diablo -C 100` and post the full output (you can paste it into [gist](https://gist.github.com/)).
Hmm it logs a lot of errors for "Failed to generate thumbnail", but those should be ignored and not prevent it from fetching the community. Anyway you can try if...