Files
nixpkgs/pkgs/by-name/ke/key-rack/0001-fix-E0716.patch
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

28 lines
867 B
Diff

From 0b1d9759c43629dcd3d3a6216ea47b09516a5d84 Mon Sep 17 00:00:00 2001
From: seth <getchoo@tuta.io>
Date: Sat, 6 Jul 2024 18:59:50 -0400
Subject: [PATCH] fix E0716
doesn't seem to have popped up in upstream's CI. maybe this is only an
issue in rust versions < 1.79?
---
src/data/item.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/data/item.rs b/src/data/item.rs
index 43dcf6f..985be74 100644
--- a/src/data/item.rs
+++ b/src/data/item.rs
@@ -327,7 +327,7 @@ impl ItemSchema {
Self::Unknown(schema) => {
let info = crate::utils::AppInfo::new(schema);
if info.is_installed() {
- &format!("{schema}-symbolic")
+ return format!("{schema}-symbolic");
} else {
"dialog-password-symbolic"
}
--
2.45.1