From 27c5a30cc1b0d83bbdfd56561f02ee0addda7d23 Mon Sep 17 00:00:00 2001 From: Robin Dadswell <19610103+RobinDadswell@users.noreply.github.com> Date: Mon, 11 Oct 2021 12:22:40 +0100 Subject: [PATCH] New: New Zealand as an option for Certificate Country --- frontend/src/Settings/Metadata/Options/MetadataOptions.js | 3 ++- .../MetadataSource/SkyHook/Resource/TMDbCountryCode.cs | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/Settings/Metadata/Options/MetadataOptions.js b/frontend/src/Settings/Metadata/Options/MetadataOptions.js index feed7a741..124d78163 100644 --- a/frontend/src/Settings/Metadata/Options/MetadataOptions.js +++ b/frontend/src/Settings/Metadata/Options/MetadataOptions.js @@ -20,7 +20,8 @@ export const certificationCountryOptions = [ { key: 'gb', value: 'Great Britain' }, { key: 'it', value: 'Italy' }, { key: 'es', value: 'Spain' }, - { key: 'us', value: 'United States' } + { key: 'us', value: 'United States' }, + { key: 'nz', value: 'New Zealand' } ]; function MetadataOptions(props) { diff --git a/src/NzbDrone.Core/MetadataSource/SkyHook/Resource/TMDbCountryCode.cs b/src/NzbDrone.Core/MetadataSource/SkyHook/Resource/TMDbCountryCode.cs index f0b118cbe..a2d8cccd8 100644 --- a/src/NzbDrone.Core/MetadataSource/SkyHook/Resource/TMDbCountryCode.cs +++ b/src/NzbDrone.Core/MetadataSource/SkyHook/Resource/TMDbCountryCode.cs @@ -10,6 +10,7 @@ public enum TMDbCountryCode GB, //Great Britain IT, //Italy ES, //Spain - US //United States + US, //United States + NZ //New Zealand } }