diff --git a/jsapp/js/components/projectDownloads/projectExportsList.es6 b/jsapp/js/components/projectDownloads/projectExportsList.es6 index 70d5b061d7..f98764ffdf 100644 --- a/jsapp/js/components/projectDownloads/projectExportsList.es6 +++ b/jsapp/js/components/projectDownloads/projectExportsList.es6 @@ -178,7 +178,7 @@ export default class ProjectExportsList extends React.Component { // doesn't exist in current form version let languageDisplay = ({t('Unknown')}); const langIndex = getLanguageIndex(this.props.asset, exportLang); - if (langIndex !== null) { + if (langIndex !== -1) { languageDisplay = exportLang; } else if (EXPORT_FORMATS[exportLang]) { languageDisplay = EXPORT_FORMATS[exportLang].label;