Skip to content

Commit

Permalink
fix(be): deserialize secret of inventory
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftin committed Jun 21, 2024
1 parent ce21ea8 commit dabc8eb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions db/Inventory.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ func FillInventory(d Store, inventory *Inventory) (err error) {
if err != nil {
return
}

err = repo.SSHKey.DeserializeSecret()
if err != nil {
return
}

inventory.Repository = &repo
}

Expand Down

0 comments on commit dabc8eb

Please sign in to comment.