Add missing await

This commit is contained in:
Hinton 2022-03-07 20:09:41 +01:00
parent f4274411f8
commit 0546762649
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ pub async fn get_password(service: &str, account: &str) -> Result<String> {
}
pub async fn get_password_keytar(service: &str, account: &str) -> Result<String> {
get_password(service, account)
get_password(service, account).await
}
pub async fn set_password(service: &str, account: &str, password: &str) -> Result<()> {