mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 10:36:54 -07:00
Fixed that sometimes there would be a hidden error on the login page.
Also improved the recently added sync so we don't do a episode cache straight after
This commit is contained in:
parent
56658f02db
commit
81811bab03
4 changed files with 25 additions and 3 deletions
|
@ -88,8 +88,12 @@ namespace Ombi.Schedule.Jobs.Plex
|
|||
Logger.LogWarning(LoggingEvents.PlexContentCacher, e, "Exception thrown when attempting to cache the Plex Content");
|
||||
}
|
||||
|
||||
Logger.LogInformation("Starting EP Cacher");
|
||||
BackgroundJob.Enqueue(() => EpisodeSync.Start());
|
||||
if (!recentlyAddedSearch)
|
||||
{
|
||||
Logger.LogInformation("Starting EP Cacher");
|
||||
BackgroundJob.Enqueue(() => EpisodeSync.Start());
|
||||
}
|
||||
|
||||
BackgroundJob.Enqueue(() => Metadata.Start());
|
||||
}
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
you can substitue the span of reauth email for a input with the email and
|
||||
include the remember me checkbox
|
||||
-->
|
||||
<div *ngIf="form && customizationSettings">
|
||||
<div *ngIf="form && customizationSettings && authenticationSettings">
|
||||
|
||||
<div *ngIf="background" @fadeInOut class="bg" [style.background-image]="background"></div>
|
||||
<div class="container" id="login">
|
||||
|
|
|
@ -58,6 +58,21 @@
|
|||
|
||||
|
||||
-->
|
||||
|
||||
@*<!-- Start SmartBanner configuration -->
|
||||
<meta name="smartbanner:title" content="Smart Application">
|
||||
<meta name="smartbanner:author" content="SmartBanner Contributors">
|
||||
<meta name="smartbanner:price" content=" ">
|
||||
<meta name="smartbanner:price-suffix-apple" content=" On the App Store">
|
||||
<meta name="smartbanner:price-suffix-google" content=" In Google Play">
|
||||
<meta name="smartbanner:icon-apple" content="http://a3.mzstatic.com/us/r30/Purple60/v4/c1/3b/b0/c13bb085-64c0-cc90-f97a-521b96963986/icon350x350.jpeg">
|
||||
<meta name="smartbanner:icon-google" content="http://lh3.ggpht.com/f4oX61ljZ6x8aYDELZOgxlvdUEu73-wSQ4fy5bx6fCRISnZP8T353wdaM43RO_DbGg=w300">
|
||||
<meta name="smartbanner:button" content="View">
|
||||
<meta name="smartbanner:button-url-apple" content="https://itunes.apple.com/us/genre/ios/id36?mt=8">
|
||||
<meta name="smartbanner:button-url-google" content="https://play.google.com/store">
|
||||
<meta name="smartbanner:enabled-platforms" content="android,ios">e.com/store/apps/details?id=com.tidusjar.Ombi">
|
||||
<meta name="smartbanner:enabled-platforms" content="android,ios">
|
||||
<!-- End SmartBanner configuration -->*@
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<meta name="description" content="Ombi, media request tool">
|
||||
|
@ -78,6 +93,7 @@
|
|||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="~/loading.css" asp-append-version="true" />
|
||||
|
|
|
@ -67,6 +67,8 @@ module.exports = (env: any) => {
|
|||
"@ngx-translate/core",
|
||||
"@ngx-translate/http-loader",
|
||||
"ngx-order-pipe",
|
||||
//"smartbanner.js/dist/smartbanner.js",
|
||||
//"smartbanner.js/dist/smartbanner.css",
|
||||
],
|
||||
},
|
||||
output: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue