Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit 552192a

Browse files
committed
.
1 parent cc2e48b commit 552192a

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

go_spammer/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,12 @@ func SendDirectMessages(userID *C.char, message *C.char) {
139139
for _, token := range tokens {
140140
wg.Add(1)
141141
go func(t string) {
142+
defer wg.Done()
142143
tools := &Tools{Token: t}
143144
_, err := tools.createDMAndSendMessage(goUserID, goMessage)
144145
if err != nil {
145146
fmt.Printf("There was an error sending dm to %s with the token %s: %s", goUserID, t, err)
146147
}
147-
defer wg.Done()
148148

149149
}(token)
150150
}

shared/spammer.so

-48 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)