Merge pull request #4733 from crobibero/omdb-null

Fix potential null reference in OMDB
pull/4743/head
Bond-009 4 years ago committed by GitHub
commit 87e13b858a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -425,7 +425,7 @@ namespace MediaBrowser.Providers.Plugins.Omdb
{
var person = new PersonInfo
{
Name = result.Director.Trim(),
Name = result.Writer.Trim(),
Type = PersonType.Writer
};

Loading…
Cancel
Save