Added some better handling when adding existing seasons to a tv show in the Plex cacher.

Also fixed the errors on #1673
pull/1676/head
tidusjar 7 years ago
parent dd306aae5a
commit fc31db4c6e

@ -18,6 +18,7 @@ namespace Ombi.Helpers
public static EventId EmbyUserImporter => new EventId(2005);
public static EventId SonarrCacher => new EventId(2006);
public static EventId CouchPotatoCacher => new EventId(2007);
public static EventId PlexContentCacher => new EventId(2008);
public static EventId MovieSender => new EventId(3000);

@ -123,6 +123,8 @@ namespace Ombi.Schedule.Jobs.Plex
// Do we already have this item?
var existingContent = await Repo.GetByKey(show.ratingKey);
if (existingContent != null)
{
try
{
Logger.LogInformation("We already have show {0} checking for new seasons", existingContent.Title);
// Ok so we have it, let's check if there are any new seasons
@ -143,6 +145,11 @@ namespace Ombi.Schedule.Jobs.Plex
if (itemAdded) await Repo.Update(existingContent);
}
catch (Exception e)
{
Logger.LogError(LoggingEvents.PlexContentCacher, e, "Exception when adding new seasons to title {0}", existingContent.Title);
}
}
else
{

@ -114,6 +114,7 @@ namespace Ombi.Schedule.Jobs.Plex
}
// we have now finished.
_log.LogInformation(LoggingEvents.PlexEpisodeCacher, "We have finished caching the episodes.");
await _repo.SaveChangesAsync();
}

@ -122,10 +122,10 @@ export class MovieRequestsComponent implements OnInit {
private loadRequests(amountToLoad: number, currentlyLoaded: number) {
this.requestService.getMovieRequests(amountToLoad, currentlyLoaded + 1)
.subscribe(x => {
// x.background = this.sanitizer.
// bypassSecurityTrustStyle
// ("linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.6) 100%),url(" + "https://image.tmdb.org/t/p/w1280" + x.backdropPath + ")");
this.setOverrides(x);
if(!this.movieRequests) {
this.movieRequests = [];
}
this.movieRequests.push.apply(this.movieRequests, x);
this.currentlyLoaded = currentlyLoaded + amountToLoad;
});

@ -1,7 +1,7 @@
<settings-menu></settings-menu>
<wiki [url]="'https://github.com/tidusjar/Ombi/wiki/User-Management-Settings'"></wiki>
<fieldset>
<fieldset *ngIf="settings">
<legend>User Management Settings</legend>
<div class="col-md-6">

@ -316,7 +316,7 @@ button.list-group-item:focus {
color:$primary-colour $i;
}
.ui-state-default {
.ui-radiobutton-box .ui-widget .ui-state-default {
border-width: 2px;
border-style: solid;
border-color: $primary-colour-outline;

Loading…
Cancel
Save