From a81162e4a5f830339cfb143eeb951a57868c52b3 Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Sun, 8 Dec 2024 12:40:41 +0800 Subject: NICK: Also delete old nick association when not fully registered --- errors.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'errors.go') diff --git a/errors.go b/errors.go index 7c0a037..a65fdef 100644 --- a/errors.go +++ b/errors.go @@ -13,6 +13,8 @@ var ( ErrNotConnectedServer = errors.New("not connected server") ErrSendToSelf = errors.New("attempt to send message to self") ErrUIDBusy = errors.New("too many busy uids") - ErrInconsistent = errors.New("inconsistent state") ErrCallState = errors.New("invalid call state") + ErrInconsistentGlobal = errors.New("inconsistent global state") + ErrInconsistentClient = errors.New("inconsistent client state") + ErrRemoteClient = errors.New("operation not supported for a remote client") ) -- cgit v1.2.3