about summary refs log tree commit diff
path: root/pkgs/by-name/ke/key-rack/0001-fix-E0716.patch
blob: fcbc64ddd3ad2e002e03265de27b779ebcfbaa7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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