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

Fixed issue where we could get null rating keys on Plex

pull/1204/head
tidusjar 8 years ago
parent 5095d30a3c
commit 9637fe92f4

@ -264,7 +264,7 @@ namespace Ombi.Services.Jobs
return media;
});
if (item == null)
if (item == null && !string.IsNullOrEmpty(m.ItemId))
{
// Doesn't exist, insert it
PlexContent.Insert(new PlexContent
@ -305,7 +305,7 @@ namespace Ombi.Services.Jobs
return media;
});
if (item == null)
if (item == null && !string.IsNullOrEmpty(t.ItemId))
{
PlexContent.Insert(new PlexContent
{

Loading…
Cancel
Save