Skip to content

Commit

Permalink
fix issue with parsing the security group string
Browse files Browse the repository at this point in the history
  • Loading branch information
pwcushman committed Mar 5, 2024
1 parent cd659cb commit f0607ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/choose-security-groups.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ChooseSecurityGroups {
let state
let messagemeta = {}

const groups = this.messageService.getMessage().split(/[^0-9]/)
const groups = this.messageService.getMessage().trim().split(/[^0-9]/)
const securityGroupList = this.broadcastService.getAPISecurityGroups()
let groupsToSend = []
let groupsString = ''
Expand Down

0 comments on commit f0607ba

Please sign in to comment.