mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-24 23:15:23 -07:00
Fix IMDB links for TV shows not working
Links for TV shows were just relative paths to their imdb ID. ex: `href="tt0944947"` for Game of Thrones
This commit is contained in:
parent
fc108fcba4
commit
7533aa6f00
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@
|
|||
<div class="col-sm-8 small-padding">
|
||||
<div>
|
||||
|
||||
<a *ngIf="node.imdbId" href="{{node.imdbId}}" target="_blank">
|
||||
<a *ngIf="node.imdbId" href="http://www.imdb.com/title/{{node.imdbId}}/" target="_blank">
|
||||
<h4>{{node.title}} ({{node.firstAired | amLocal | amDateFormat: 'YYYY'}})</h4>
|
||||
|
||||
</a>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue