nothing
Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
parent
61fa33739d
commit
4241b67771
2 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ TARGET="pleroma@froth.zone:/opt/pleroma-zero"
|
|||
|
||||
#rsync -ra public/ "${TARGET}/instance/static"
|
||||
#cp dist/index.html "${TARGET}/instance/static/index.html"
|
||||
rsync --update -Pr dist/ "${TARGET}"
|
||||
rsync --update --delete -Pr dist/ "${TARGET}"
|
||||
#rsync --update -ra dist/static/ "${TARGET}/instance/static/static"
|
||||
#rsync --delete -ra images/ "${TARGET}/instance/static/images"
|
||||
#rsync --delete -ra sounds/ "${TARGET}/instance/static/sounds"
|
||||
|
|
|
@ -304,7 +304,7 @@ const fetchUser = ({ id, credentials }) => {
|
|||
}
|
||||
|
||||
const fetchUserRelationship = ({ id, credentials }) => {
|
||||
let url = `${MASTODON_USER_RELATIONSHIPS_URL}/?id=${id?.id ?? id}`
|
||||
let url = `${MASTODON_USER_RELATIONSHIPS_URL}/?id=${id.id}`
|
||||
return fetch(url, { headers: authHeaders(credentials) })
|
||||
.then((response) => {
|
||||
return new Promise((resolve, reject) => response.json()
|
||||
|
|
Loading…
Reference in a new issue