mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-10 07:22:35 -07:00
Fixed issues img
This commit is contained in:
parent
e4bd0950d0
commit
487abf3ac2
2 changed files with 2 additions and 2 deletions
|
@ -145,7 +145,7 @@ namespace Ombi.UI.Modules
|
||||||
Deleted = issue.Deleted,
|
Deleted = issue.Deleted,
|
||||||
Type = issue.Type,
|
Type = issue.Type,
|
||||||
ProviderId = issue.ProviderId,
|
ProviderId = issue.ProviderId,
|
||||||
PosterUrl = issue.PosterUrl,
|
PosterUrl = issue.PosterUrl.Contains("https://image.tmdb.org/t/p/w150/") ? issue.PosterUrl : $"https://image.tmdb.org/t/p/w150/{issue.PosterUrl}",
|
||||||
Id = issue.Id
|
Id = issue.Id
|
||||||
};
|
};
|
||||||
return View["Details", m];
|
return View["Details", m];
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<img src="https://image.tmdb.org/t/p/w150/@Model.PosterUrl" />
|
<img src="@Model.PosterUrl" />
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-9">
|
<div class="col-md-9">
|
||||||
<h4>Issues For "@Model.Title"</h4>
|
<h4>Issues For "@Model.Title"</h4>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue