1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-03 22:57:18 +02:00

New: Add Spain to list of Certifications

This commit is contained in:
Daniel Martin Gonzalez 2020-11-18 16:17:03 +01:00 committed by Qstick
parent 2fbd829b93
commit c6294b71ae
2 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,7 @@ export const certificationCountryOptions = [
{ key: 'de', value: 'Germany' },
{ key: 'gb', value: 'Great Britain' },
{ key: 'it', value: 'Italy' },
{ key: 'es', value: 'Spain' },
{ key: 'us', value: 'United States' }
];

View File

@ -9,6 +9,7 @@ public enum TMDbCountryCode
DE, //Germany
GB, //Great Britain
IT, //Italy
ES, //Spain
US //United States
}
}