From 0ab31046c0cd8a48376465fed844b509d1f7bd1c Mon Sep 17 00:00:00 2001 From: Matt Day Date: Thu, 20 Aug 2015 04:28:52 -0600 Subject: [PATCH] Fix `go vet` nitpicks. Fixes #130: * pass by reference into AllowAnonymous * check return value of From() rather than value of From function --- auth.go | 2 +- chat/command.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/auth.go b/auth.go index e8f9192..4d27ca4 100644 --- a/auth.go +++ b/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 } diff --git a/chat/command.go b/chat/command.go index 76e4b21..61b7073 100644 --- a/chat/command.go +++ b/chat/command.go @@ -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 }