Skip to content

Commit

Permalink
Fixes version downloader due to change in json structure
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymoulin authored Aug 22, 2024
1 parent d946800 commit 05121ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN apk add --update --no-cache curl --virtual .build-deps && \
else \
DL_INDEX=2; \
fi; \
DL_URL=`curl -s 'https://plex.tv/pms/downloads/5.json' | python3 -c "import sys, json; print(json.load(sys.stdin)['nas']['Synology']['releases'][${DL_INDEX}]['url'])"`; \
DL_URL=`curl -s 'https://plex.tv/pms/downloads/5.json' | python3 -c "import sys, json; print(json.load(sys.stdin)['nas']['Synology (DSM 7)']['releases'][${DL_INDEX}]['url'])"`; \
else \
DL_URL="$PMS_URL"; \
fi; \
Expand Down

0 comments on commit 05121ce

Please sign in to comment.