Skip to content

Commit c07f8aa

Browse files
authored
Merge pull request #357 from urnetwork/subscription-balance-is-pro-fix
Subscription balance fix
2 parents a4e1b60 + fb092bb commit c07f8aa

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

controller/subscription_controller.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,10 +209,10 @@ func SubscriptionBalance(session *session.ClientSession) (*SubscriptionBalanceRe
209209
currentSubscription = &Subscription{
210210
Plan: model.SubscriptionTypeSupporter,
211211
}
212-
}
213212

214-
if market != nil {
215-
currentSubscription.Store = *market
213+
if market != nil {
214+
currentSubscription.Store = *market
215+
}
216216
}
217217

218218
// FIXME

0 commit comments

Comments
 (0)