Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/a5bb99367e6c31cbe3ae4e9abd39d2c97e79c8a4/UI/Series/Index/EpisodeProgressPartial.html You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/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>