diff --git a/core/database/homescriptArgs.go b/core/database/homescriptArgs.go index 9603d575..72c95e4a 100644 --- a/core/database/homescriptArgs.go +++ b/core/database/homescriptArgs.go @@ -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 }