trivial: Recognize .jcat files as a signature to fix CLI progress message

This commit is contained in:
Richard Hughes 2020-04-03 16:29:56 +01:00
parent a1de20665a
commit 58f85d26ea

View File

@ -1170,7 +1170,8 @@ fu_util_download_file (FuUtilPrivate *priv,
"Failed to parse URI %s", uri_str);
return FALSE;
}
if (g_str_has_suffix (uri_str, ".asc") ||
if (g_str_has_suffix (uri_str, ".jcat") ||
g_str_has_suffix (uri_str, ".asc") ||
g_str_has_suffix (uri_str, ".p7b") ||
g_str_has_suffix (uri_str, ".p7c")) {
/* TRANSLATORS: downloading new signing file */