Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
fix unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Feb 11, 2022
1 parent 0831947 commit 97f45ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ func setAccountAttributes(attributes *UpdateAccountAttributes) error {
if resp.IsError() {
return resp
}
p, err := profiles.GetProfile(config.ConfigFile.UUID, config.ConfigFile.ProfileKey)
_, err = profiles.GetProfile(config.ConfigFile.UUID, config.ConfigFile.ProfileKey)
if err != nil {
return err
}
Expand Down

0 comments on commit 97f45ae

Please sign in to comment.