Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/src/commit/3a3d43b7023f625a94d7cb8dd95d20b4c130f956/UI/Series/Index/EpisodeProgressPartial.html You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/UI/Series/Index/EpisodeProgressPartial.html

15 lines
509 B

{{#if_eq episodeFileCount compare=episodeCount}}
{{#if_eq status compare="continuing"}}
<div class="progress">
{{else}}
<div class="progress progress-success">
{{/if_eq}}
{{else}}
<div class="progress progress-danger">
{{/if_eq}}
<span class="progressbar-back-text">{{episodeFileCount}} / {{episodeCount}}</span>
<div class="bar" style="width:{{percentOfEpisodes}}%"><span class="progressbar-front-text">{{episodeFileCount}} / {{episodeCount}}</span></div>
</div>