Closed
Description
There is the method:
static func refresh(completion: @escaping IAPRefreshRequestResult)
{
if refreshSession != nil { return }
refreshSession = RefreshSession()
refreshSession!.refresh { (error) in
completion(error)
InAppReceipt.destroyRefreshSession()
}
}
It will just silently return if refreshSession is already exists without completion handler calling.
Can you please check it?