save data when applying vouchers
parent
c06b1496a3
commit
a44a6c382f
|
@ -38,13 +38,25 @@ func Get(uuid []byte, datatype, slot int) (any, error) {
|
|||
return nil, err
|
||||
}
|
||||
|
||||
// TODO this should be a transaction
|
||||
compensations, err := db.FetchAndClaimAccountCompensations(uuid)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to fetch compensations: %s", err)
|
||||
}
|
||||
|
||||
needsUpdate := false
|
||||
for compensationType, amount := range compensations {
|
||||
system.VoucherCounts[strconv.Itoa(compensationType)] += amount
|
||||
if amount > 0 {
|
||||
needsUpdate = true
|
||||
}
|
||||
}
|
||||
|
||||
if needsUpdate {
|
||||
err = db.StoreSystemSaveData(uuid, system)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to update system save data: %s", err)
|
||||
}
|
||||
}
|
||||
|
||||
return system, nil
|
||||
|
|
Loading…
Reference in New Issue