mirror of
https://github.com/foomo/shop.git
synced 2025-10-16 12:35:39 +00:00
fix mssing return in customer.IsComplete
This commit is contained in:
parent
ed667a49ef
commit
f900b01140
@ -11,7 +11,7 @@ import (
|
||||
func (customer *Customer) IsComplete() error {
|
||||
addr, err := customer.GetDefaultBillingAddress()
|
||||
if err != nil {
|
||||
fmt.Errorf("could not load default billing address: %q", err)
|
||||
return fmt.Errorf("could not load default billing address: %q", err)
|
||||
}
|
||||
|
||||
var mErr *multierror.Error
|
||||
|
||||
Loading…
Reference in New Issue
Block a user