Update XbmcMetadataSettings.cs

Fix typo
This commit is contained in:
FuNK3Y 2018-10-14 14:24:00 +02:00 committed by GitHub
parent 3a55b766c3
commit 0df5cd478b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,7 @@ public class XbmcMetadataSettings : IProviderConfig
public XbmcMetadataSettings()
{
MovieMetadata = true;
MoviMetadataURL = true;
MovieMetadataURL = true;
MovieImages = true;
UseMovieNfo = false;
}
@ -28,7 +28,7 @@ public XbmcMetadataSettings()
public bool MovieMetadata { get; set; }
[FieldDefinition(1, Label = "Movie Metadata URL", Type = FieldType.Checkbox, HelpText = "Radarr will write the tmdb/imdb url in the .nfo file")]
public bool MoviMetadataURL { get; set; }
public bool MovieMetadataURL { get; set; }
[FieldDefinition(2, Label = "Movie Images", Type = FieldType.Checkbox)]
public bool MovieImages { get; set; }