Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/256cfbc80fad7663b7e98b61f26cf3f58b99e489 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed a small bug in the SR cacher

pull/158/head
tidusjar 9 years ago
parent f01f230901
commit 256cfbc80f

@ -64,7 +64,7 @@ namespace PlexRequests.Services
{
Log.Trace("Getting all shows from SickRage");
var movies = SrApi.GetShows(settings.ApiKey, settings.FullUri);
Cache.Set(CacheKeys.SickRageQueued, movies, 10);
Cache.Set(CacheKeys.SickRageQueued, movies.Result);
}
}

@ -52,6 +52,7 @@ namespace PlexRequests.UI.Helpers
sb.AppendLine($"<script src=\"{content}/Content/jquery-2.2.1.min.js\"></script>");
sb.AppendLine($"<script src=\"{content}/Content/handlebars.min.js\"></script>");
sb.AppendLine($"<script src=\"{content}/Content/bootstrap.min.js\"></script>");
sb.AppendLine($"<script src=\"{content}/Content/bootstrap-notify.min.js\"></script>");
sb.AppendLine($"<script src=\"{content}/Content/site.js\"></script>");
sb.AppendLine($"<script src=\"{content}/Content/pace.min.js\"></script>");
sb.AppendLine($"<script src=\"{content}/Content/jquery.mixitup.js\"></script>");

Loading…
Cancel
Save