small changes #865

pull/1488/head
tidusjar 7 years ago
parent 0875b5f665
commit 3ee65f4f0c

@ -1,5 +1,21 @@
<div *ngIf="series">
<style>
#bannerimage {
width: 758px;
height: 140px;
background-color: black;
background-position: center;
padding-bottom:30px;
}
</style>
<div *ngIf="series">
<!--<div class="row">
<div class="col-md-6 col-md-push-2">
<div id="bannerimage" style="background-image: url('https://thetvdb.com/banners/graphical/121361-g19.jpg');">
</div>
</div>
</div>-->
<ngb-tabset>
<div *ngFor="let season of series.seasonRequests">

@ -119,22 +119,20 @@ namespace Ombi
services.AddHangfire(x =>
{
#if DEBUG
x.UseMemoryStorage(new MemoryStorageOptions());
#else
x.UseSQLiteStorage("Data Source=Ombi.db;");
#endif
//x.UseSQLiteStorage("Data Source=Ombi.db;");
x.UseActivator(new IoCJobActivator(services.BuildServiceProvider()));
});
#if DEBUG
// Note .AddMiniProfiler() returns a IMiniProfilerBuilder for easy intellisense
services.AddMiniProfiler();
#endif
// Make sure you have memory cache available unless you're using another storage provider
services.AddMemoryCache();
#endif
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.

Loading…
Cancel
Save