fix: get user account

This commit is contained in:
2023-08-09 20:07:49 +02:00
parent 8278b74ae8
commit 0d3a68997a
2 changed files with 5 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ import (
)
type account struct {
User string
Salt string `prosody:"salt"`
StoredKey string `prosody:"stored_key"`
IterationCount string `prosody:"iteration_count"`
@@ -47,7 +48,9 @@ func (p *Prosody) loadAccount(username string) (*account, error) {
}
}
acc := &account{}
acc := &account{
User: username,
}
acc.unmarshal(mapValues)
return acc, nil
}