Skip to content

Commit

Permalink
Fix compilation error in HomescriptArgs
Browse files Browse the repository at this point in the history
  • Loading branch information
MikMuellerDev committed Jun 3, 2022
1 parent 9d017ab commit 4773f4d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/database/homescriptArgs.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ func ListAllHomescriptArgsOfUser(username string) ([]HomescriptArg, error) {
defer res.Close()
args := make([]HomescriptArg, 0)
for res.Next() {
var currentArg
var currentArg HomescriptArg
currentArg.Prompt = "TODO"
}
return args, nil
}

0 comments on commit 4773f4d

Please sign in to comment.