The asterisk command incorrectly parses account names from settings.json that contain spaces, treating each word as a separate
account.
To Reproduce:
- Add an account name with spaces to the
additionalAccounts array in your settings file:
{
"additionalAccounts": [
"My Test Account"
]
}
- Run the asterisk command.
Current Behavior:
The tool incorrectly splits "My Test Account" and processes it as three different accounts: My, Test, and Account.
Expected Behavior:
The tool should treat "My Test Account" as a single, distinct account.

The
asteriskcommand incorrectly parses account names from settings.json that contain spaces, treating each word as a separateaccount.
To Reproduce:
additionalAccountsarray in your settings file:Current Behavior:
The tool incorrectly splits "My Test Account" and processes it as three different accounts:
My,Test, andAccount.Expected Behavior:
The tool should treat "My Test Account" as a single, distinct account.