Skip to content

Commit

Permalink
Merge branch 'main' into km/pm-16926/fix-km-imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas-Avery authored Jan 15, 2025
2 parents e3ddef6 + 1916fdc commit 168007c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,9 @@
"enabledManagers": ["cargo", "github-actions", "npm"],
"packageRules": [
{
"groupName": "gh minor",
"groupName": "github action dependencies",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"matchManagers": ["github-actions"],
"commitMessagePrefix": "[deps] BRE:"
"matchUpdateTypes": ["minor"]
},
{
"matchManagers": ["cargo"],
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/desktop_native/core/src/password/windows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use windows::{

const CRED_FLAGS_NONE: u32 = 0;

pub async fn get_password<'a>(service: &str, account: &str) -> Result<String> {
pub async fn get_password(service: &str, account: &str) -> Result<String> {
let target_name = U16CString::from_str(target_name(service, account))?;

let mut credential: *mut CREDENTIALW = std::ptr::null_mut();
Expand Down

0 comments on commit 168007c

Please sign in to comment.