do not try to get an archive list if it is inside another archive
This commit is contained in:
parent
0a83f7a888
commit
7be7568d7d
|
@ -423,7 +423,7 @@ database_info_handle_t *database_info_dir_init(const char *dir,
|
||||||
{
|
{
|
||||||
const char *path = db->list->elems[i].data;
|
const char *path = db->list->elems[i].data;
|
||||||
|
|
||||||
if (path_is_compressed_file(path))
|
if (path_is_compressed_file(path) && !path_contains_compressed_file(path))
|
||||||
{
|
{
|
||||||
struct string_list *archive_list =
|
struct string_list *archive_list =
|
||||||
file_archive_get_file_list(path, NULL);
|
file_archive_get_file_list(path, NULL);
|
||||||
|
|
Loading…
Reference in New Issue