Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sibasankarnayak committed Apr 6, 2022
1 parent 022780e commit d06b6fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,8 @@ func (p *Plugin) handleSubscribe(_ *plugin.Context, args *model.CommandArgs, par
return "Invalid Command. commands available `add`, `delete` and `list`"
}

func (p *Plugin) findSubscriptionsEvents(channelID, userId, owner, repo string) (string, error) {
previouslySubscribed, err := p.GetSubscriptionsByChannel(channelID, userId)
func (p *Plugin) findSubscriptionsEvents(channelID, userID, owner, repo string) (string, error) {
previouslySubscribed, err := p.GetSubscriptionsByChannel(channelID, userID)
if err != nil {
return "", err
}
Expand Down

0 comments on commit d06b6fc

Please sign in to comment.