Hi team. Found one problem. When I’ve tried to relogin to the same account - always receive the problem with `getProducts` method:
```
BillingWrapper is not attached to a listener
```
Precondition:
- Setup global customerListener
```Purchases.sharedInstance.updatedCustomerInfoListener = UpdatedCustomerInfoListener { customerInfo → if(customerInfo.originalAppUserId == myCurrentUserId) { fetchProducts(customerInfo) } }
```
Found stable steps to reproduce:
- Login to account A (`Purchases.sharedInstance.awaitLogIn(firebaseUser.uid)`)
- Logout from account A
- Login to account B
- Logout from account B
- Login to account A, await `customerInfo`, call getProducts
Result:
```
PurchasesError(code=UnknownError, underlyingErrorMessage=BillingWrapper is not attached to a listener, message='Unknown error.')
```