Skip to content

Commit 7eaa2ff

Browse files
committed
feat: sdk not init and not login code
1 parent a539160 commit 7eaa2ff

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

open_im_sdk/userRelated.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ var (
6868
// CheckResourceLoad checks the SDK is resource load status.
6969
func CheckResourceLoad(uSDK *LoginMgr, funcName string) error {
7070
if uSDK == nil {
71-
return errs.New("SDK not initialized,userForSDK is nil", "funcName", funcName).Wrap()
71+
return errs.NewCodeError(sdkerrs.SDKNotInitError, fmt.Sprintf("SDK not initialized,userForSDK is nil, funcName: %s", funcName)).Wrap()
7272
}
7373
if funcName == "" {
7474
return nil
@@ -78,7 +78,7 @@ func CheckResourceLoad(uSDK *LoginMgr, funcName string) error {
7878
return nil
7979
}
8080
if uSDK.getLoginStatus(context.Background()) != Logged {
81-
return errs.New("SDK not logged in", "funcName", funcName).Wrap()
81+
return errs.NewCodeError(sdkerrs.NotLoginError, fmt.Sprintf("SDK not logged in, funcName: %s", funcName)).Wrap()
8282
}
8383
return nil
8484
}

pkg/sdkerrs/code.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ const (
2525
UnknownCode = 10005 // Unrecognized code
2626
SdkInternalError = 10006 // SDK internal error
2727

28-
NoUpdateError = 10007 // No updates available
28+
NoUpdateError = 10007 // No updates available
29+
SDKNotInitError = 10008 // SDK not init
30+
NotLoginError = 10009 // SDK not login
2931

3032
UserIDNotFoundError = 10100 // UserID not found or not registered
3133
LoginOutError = 10101 // User has logged out

0 commit comments

Comments
 (0)