mirror of https://github.com/v2ray/v2ray-core
remove unnecessary error
parent
c0ea29a2ed
commit
f2e149e1d0
|
@ -7,7 +7,6 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
ErrUserMissing = errors.New("User is not specified.")
|
|
||||||
ErrAccountMissing = errors.New("Account is not specified.")
|
ErrAccountMissing = errors.New("Account is not specified.")
|
||||||
ErrNonMessageType = errors.New("Not a protobuf message.")
|
ErrNonMessageType = errors.New("Not a protobuf message.")
|
||||||
ErrUnknownAccountType = errors.New("Unknown account type.")
|
ErrUnknownAccountType = errors.New("Unknown account type.")
|
||||||
|
|
|
@ -32,7 +32,7 @@ func NewServer(ctx context.Context, config *ServerConfig) (*Server, error) {
|
||||||
return nil, errors.New("Shadowsocks|Server: No space in context.")
|
return nil, errors.New("Shadowsocks|Server: No space in context.")
|
||||||
}
|
}
|
||||||
if config.GetUser() == nil {
|
if config.GetUser() == nil {
|
||||||
return nil, protocol.ErrUserMissing
|
return nil, errors.New("Shadowsocks|Server: User is not specified.")
|
||||||
}
|
}
|
||||||
|
|
||||||
rawAccount, err := config.User.GetTypedAccount()
|
rawAccount, err := config.User.GetTypedAccount()
|
||||||
|
|
Loading…
Reference in New Issue