Fixed #940 don't show any shows without a tvdb id

Added a link to the netflix movie when you click the label
This commit is contained in:
tidusjar 2017-01-17 21:28:11 +00:00
parent 809d0103c3
commit e5d7c4c3ec
3 changed files with 7 additions and 2 deletions

View file

@ -54,7 +54,7 @@ namespace Ombi.UI.Modules
return Response.AsJson(new { Result = false });
}
return Response.AsJson(new { Result = true });
return Response.AsJson(new { Result = true, NetflixId = result.ShowId });
}