diff options
| author | James Elliott <james-d-elliott@users.noreply.github.com> | 2022-12-27 08:32:00 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-27 08:32:00 +1100 |
| commit | a69113128827b4fec259263a645639ab8f697d6e (patch) | |
| tree | 7ff38002e3bc9720f2cd764f794083a774cb9486 /internal/commands/util.go | |
| parent | ee8e4d50ad236c62f26f3d543f6444e31679ec56 (diff) | |
fix(notification): missing use of timeout (#4652)
Diffstat (limited to 'internal/commands/util.go')
| -rw-r--r-- | internal/commands/util.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/commands/util.go b/internal/commands/util.go index 19072f9a4..3142088e7 100644 --- a/internal/commands/util.go +++ b/internal/commands/util.go @@ -109,7 +109,7 @@ func flagsGetRandomCharacters(flags *pflag.FlagSet, flagNameLength, flagNameChar } } - return utils.RandomString(n, charset, true), nil + return utils.RandomString(n, charset), nil } func termReadConfirmation(flags *pflag.FlagSet, name, prompt, confirmation string) (confirmed bool, err error) { |
