Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/70e85cb6c4f71b5d5804363482187e58c7a51734 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix OpenAPI workflow some more ()

pull/11780/head
Niels van Velzen 11 months ago committed by GitHub
parent 624ad9cb98
commit 70e85cb6c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -103,13 +103,10 @@ jobs:
run: |
# Read and fix markdown
body=$(cat openapi-changes.md)
body="${body//'%'/'%25'}"
body="${body//$'\n'/'%0A'}"
body="${body//$'\r'/'%0D'}"
# Write to workflow summary
echo $body >> $GITHUB_STEP_SUMMARY
# Set ApiChanged var
if [ $body != '' ]; then
if [ "$body" != '' ]; then
echo "ApiChanged=1" >> "$GITHUB_OUTPUT"
else
echo "ApiChanged=0" >> "$GITHUB_OUTPUT"

Loading…
Cancel
Save