Fix deleting profiles

This commit is contained in:
Daniel
2022-02-15 14:35:28 +01:00
parent 2cbaf126e9
commit 888b33918a
8 changed files with 89 additions and 32 deletions

View File

@@ -259,7 +259,7 @@ func saveResponse(p *profile.Profile, entity *intel.Entity, promptResponse strin
// Update the profile if necessary.
if p.IsOutdated() {
var err error
p, err = profile.GetProfile(p.Source, p.ID, p.LinkedPath)
p, err = profile.GetProfile(p.Source, p.ID, p.LinkedPath, false)
if err != nil {
return err
}