Commit 266401e 1 parent 367dfa3 commit 266401e Copy full SHA for 266401e
File tree 3 files changed +9
-0
lines changed
3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,9 @@ func (options *Options) UserEnum() []string {
140
140
email = strings .ToValidUTF8 (email , "" )
141
141
email = strings .Trim (email , "\r " )
142
142
email = strings .Trim (email , "\n " )
143
+ if email == "" {
144
+ continue
145
+ }
143
146
queue <- email
144
147
}
145
148
Original file line number Diff line number Diff line change @@ -58,6 +58,9 @@ func (options *Options) UserEnum() []string {
58
58
email = strings .ToValidUTF8 (email , "" )
59
59
email = strings .Trim (email , "\r " )
60
60
email = strings .Trim (email , "\n " )
61
+ if email == "" {
62
+ continue
63
+ }
61
64
queue <- email
62
65
}
63
66
Original file line number Diff line number Diff line change @@ -105,6 +105,9 @@ func (options *Options) UserEnum(logArg *logger.Logger) []string {
105
105
email = strings .ToValidUTF8 (email , "" )
106
106
email = strings .Trim (email , "\r " )
107
107
email = strings .Trim (email , "\n " )
108
+ if email == "" {
109
+ continue
110
+ }
108
111
queue <- email
109
112
}
110
113
You can’t perform that action at this time.
0 commit comments