mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-27 23:01:21 +00:00
Felix Ableitner
366532c61a
- fixed a bug with objectid (de)serialization - fixed a bug with outbox fetching (ref #1582)
9 lines
399 B
Bash
Executable file
9 lines
399 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
curl -H "Accept: application/activity+json" https://lemmy.ml/u/nutomic | jq \
|
|
> crates/apub/assets/lemmy-person.json
|
|
curl -H "Accept: application/activity+json" https://lemmy.ml/c/meta | jq \
|
|
> crates/apub/assets/lemmy-community.json
|
|
curl -H "Accept: application/activity+json" https://queer.hacktivis.me/users/lanodan | jq \
|
|
> crates/apub/assets/pleroma-person.json
|