This commit is contained in:
2023-08-13 23:01:08 +08:00
parent 7f6b8ab819
commit f3d83c7d62

View File

@@ -70,7 +70,7 @@ pub fn find_key(conn: &Connection, name: &str) -> XResult<Option<Key>> {
Ok(Key {
name: row.get(1)?,
encrypted_key: row.get(2)?,
comment: Some(row.get(3)?),
comment: row.get(3)?,
})
})?;
match key_iter.next() {