mirror of
https://github.com/shazow/ssh-chat.git
synced 2025-04-18 17:57:41 +03:00
Fix go vet
nitpicks.
Fixes #130: * pass by reference into AllowAnonymous * check return value of From() rather than value of From function
This commit is contained in:
parent
d799863305
commit
0ab31046c0
2
auth.go
2
auth.go
@ -54,7 +54,7 @@ func NewAuth() *Auth {
|
||||
}
|
||||
|
||||
// AllowAnonymous determines if anonymous users are permitted.
|
||||
func (a Auth) AllowAnonymous() bool {
|
||||
func (a *Auth) AllowAnonymous() bool {
|
||||
return a.whitelist.Len() == 0
|
||||
}
|
||||
|
||||
|
@ -62,7 +62,7 @@ func (c Commands) Alias(command string, alias string) error {
|
||||
|
||||
// Run executes a command message.
|
||||
func (c Commands) Run(room *Room, msg message.CommandMsg) error {
|
||||
if msg.From == nil {
|
||||
if msg.From() == nil {
|
||||
return ErrNoOwner
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user