Skip to content

Commit

Permalink
fix(plugin): bulk open limit falling back to 1 if not defined
Browse files Browse the repository at this point in the history
  • Loading branch information
iGabyTM committed Apr 15, 2023
1 parent ce9c33d commit 9979e41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class VoucherSettings(

val bulkOpen = BulkOpen(
config.getBoolean("bulkOpen.enabled"),
max(1, config.getInt("bulkOpen.limit"))
config.getInt("bulkOpen.limit", 64)
)

val messages = Messages(
Expand Down

0 comments on commit 9979e41

Please sign in to comment.