Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/64d87d7a68ecf30c4fe99b4b13d1dd789d712481
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
21 additions and
21 deletions
@ -3,27 +3,27 @@
< / div >
< div class = "episode-file-info" >
{{#if episodeFile}}
{{#with episodeFile}}
< table class = "table table-bordered" >
< thead >
< tr >
< th > Path< / th >
< th > Size< / th >
< th > Quality< / th >
< / tr >
< / thead >
< tbody >
< tr >
< td > {{path}}< / td >
< td > {{fileSize size}}< / td >
< td > {{quality.quality.name}}< / td >
< / tr >
< / tbody >
< / table >
{{/with}}
{{#with episodeFile}}
< table class = "table table-bordered" >
< thead >
< tr >
< th > Path< / th >
< th > Size< / th >
< th > Quality< / th >
< / tr >
< / thead >
< tbody >
< tr >
< td > {{path}}< / td >
< td > {{fileSize size}}< / td >
< td > {{quality.quality.name}}< / td >
< / tr >
< / tbody >
< / table >
{{/with}}
{{else}}
< p class = "text-warning" >
No file available for this episode.
< / p >
< p class = "text-warning" >
No file available for this episode.
< / p >
{{/if}}
< / div >