Skip to content

Commit

Permalink
Merge pull request #16 from bramanda48/develop
Browse files Browse the repository at this point in the history
Fix currentlyBanned and totalBanned in Fail2banService
  • Loading branch information
bramanda48 authored May 13, 2024
2 parents 63902f7 + cc5b389 commit feadecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/fail2ban/fail2ban.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export class Fail2banService extends BaseService {
({ name, currentlyBanned, totalBanned, bannedIps }) =>
new Fail2banJail(
name,
totalBanned,
currentlyBanned,
totalBanned,
bannedIps.split(",")
)
);
Expand Down

0 comments on commit feadecc

Please sign in to comment.