mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-27 12:30:17 +00:00
trivial: Fix a logic thinko when adding the community warning in fwupdmgr
This commit is contained in:
parent
2b310fb368
commit
9ea78077af
@ -384,7 +384,7 @@ fu_util_get_release_description_with_fallback(FwupdRelease *rel)
|
||||
g_string_append(str, fwupd_release_get_description(rel));
|
||||
|
||||
/* add this client side to get the translations */
|
||||
if (!fwupd_release_has_flag(rel, FWUPD_RELEASE_FLAG_IS_COMMUNITY)) {
|
||||
if (fwupd_release_has_flag(rel, FWUPD_RELEASE_FLAG_IS_COMMUNITY)) {
|
||||
g_string_append_printf(
|
||||
str,
|
||||
"<p>%s</p>",
|
||||
|
Loading…
Reference in New Issue
Block a user