fix waitgroup instantiation
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Steven Polley 2024-09-01 07:30:42 -06:00
parent a7d0005423
commit 647f9a8f7b

View File

@ -86,7 +86,7 @@ func refreshData() {
} }
lastRefresh = time.Now() lastRefresh = time.Now()
var wg *sync.WaitGroup wg := sync.WaitGroup{}
// Loop through each configured account provider and attempt to get the account balances, and update YNAB // Loop through each configured account provider and attempt to get the account balances, and update YNAB
for _, p := range configuredProviders { for _, p := range configuredProviders {