Skip to content

Commit

Permalink
- Fixed: Notify user if queue name is invalid.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesb committed Oct 2, 2021
1 parent 6330abd commit 1bc6354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/create-queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ subscribeToEvents() {
async create() {
const queueName = this.queueNameText.getValue();
if (!queueName || queueName.length === 0) {
LogTo.Debug("Invalid queue name.");
LogTo.Debug("Invalid queue name.", true);
return;
}

Expand Down

0 comments on commit 1bc6354

Please sign in to comment.