diff options
author | Michael Muré <batolettre@gmail.com> | 2021-04-17 19:40:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-17 19:40:01 +0200 |
commit | 6d1c9346cc5ff892f808a7e3dd3e01291e49a16d (patch) | |
tree | 9b424181369a67f69502a27186bd266a19a28506 /commands/add.go | |
parent | 62fb09a53cc626ac581f33b466a1cdf14eb6ed89 (diff) | |
parent | 51a2c85954e77068c6afbb4ca54159086220aefd (diff) | |
download | git-bug-6d1c9346cc5ff892f808a7e3dd3e01291e49a16d.tar.gz |
Merge pull request #632 from MichaelMure/data-input-cleanup
make sure every text input is safe and validated
Diffstat (limited to 'commands/add.go')
-rw-r--r-- | commands/add.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/commands/add.go b/commands/add.go index 17fbbc93..ad3b164b 100644 --- a/commands/add.go +++ b/commands/add.go @@ -4,6 +4,7 @@ import ( "github.com/spf13/cobra" "github.com/MichaelMure/git-bug/input" + "github.com/MichaelMure/git-bug/util/text" ) type addOptions struct { @@ -60,7 +61,10 @@ func runAdd(env *Env, opts addOptions) error { } } - b, _, err := env.backend.NewBug(opts.title, opts.message) + b, _, err := env.backend.NewBug( + text.CleanupOneLine(opts.title), + text.Cleanup(opts.message), + ) if err != nil { return err } |