Skip to content

Qiscus Chat SDK (core) v1.13.2

Compare
Choose a tag to compare
@ariefnurputranto ariefnurputranto released this 18 Sep 08:44
· 3 commits to master since this release

Changelog :

  • Bugfix Crash
  • add delegate when success autoRefreshToken

for example

 extension UIChatListPresenter : QiscusCoreDelegate {
    func onRefreshToken(event: QiscusRefreshTokenEvent) {
        if event == .isUnauthorized {
            // isUnauthorized
        }else if event == .isTokenExpired {
            // isTokenExpired
        }else if event == .isSuccessAutoRefreshToken {
            //success autoRefreshToken
        }
    }
}