Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Distortions81 committed Jul 9, 2022
1 parent b1bb9d1 commit 88a4ba6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module QuickBanCombine

go 1.17
go 1.18
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func main() {

/* This area deals with standard format bans */
var bans []banDataType
json.Unmarshal(data, &bans)
_ = json.Unmarshal(data, &bans)

for _, item := range bans {
if item.UserName != "" {
Expand Down

0 comments on commit 88a4ba6

Please sign in to comment.