[FIX] #169359 【市场】【人行清算中心】挂载U盘后文件管理器显示文件异常

This commit is contained in:
Yue-Lan 2023-05-08 10:48:52 +08:00
parent b7e5c99e15
commit 88c51de3db
1 changed files with 5 additions and 1 deletions

View File

@ -431,7 +431,11 @@ g_local_file_enumerator_next_file (GFileEnumerator *enumerator,
{
g_error_free (my_error);
goto next_file;
}
} else if (g_error_matches (my_error, G_IO_ERROR, G_IO_ERROR_BROKEN_PIPE))
{
g_error_free (my_error);
goto next_file;
}
else
g_propagate_error (error, my_error);
}