MM-21898 - Part 1: Generate and use an interface instead of *A… (#13840)

* Generate and use an interface instead of *App
This commit is contained in:
Eli Yukelzon
2020-02-13 13:26:58 +01:00
committed by GitHub
parent 66fc096768
commit 17523fa5d9
200 changed files with 4553 additions and 2361 deletions

View File

@@ -107,7 +107,7 @@ func doCommand(a *App, args *model.CommandArgs, message string) *model.CommandRe
targetUsername = strings.SplitN(message, " ", 2)[0]
targetUsername = strings.TrimPrefix(targetUsername, "@")
userProfile, err := a.Srv.Store.User().GetByUsername(targetUsername)
userProfile, err := a.Srv().Store.User().GetByUsername(targetUsername)
if err != nil {
mlog.Error(err.Error())
return &model.CommandResponse{