limit archive path exception only to databases that actually support archives

This commit is contained in:
Brad Parker 2016-10-12 16:16:39 -04:00
parent 88c8c49ef8
commit a800ab68ee
1 changed files with 4 additions and 3 deletions

View File

@ -755,9 +755,10 @@ bool core_info_database_supports_content_path(const char *database_path, const c
{ {
const core_info_t *info = &core_info_curr_list->list[i]; const core_info_t *info = &core_info_curr_list->list[i];
if (string_list_find_elem(info->supported_extensions_list, "zip") || if (string_list_find_elem(info->databases_list, database))
string_list_find_elem(info->supported_extensions_list, "7z")) if (string_list_find_elem(info->supported_extensions_list, "zip") ||
return false; string_list_find_elem(info->supported_extensions_list, "7z"))
return false;
} }
} }