commandPrefix should default to !gh

This commit is contained in:
Will Hunt 2021-11-22 14:54:05 +00:00
parent 25fb04fe86
commit c5541ed877

View File

@ -163,7 +163,7 @@ export class GitHubRepoConnection implements IConnection {
}
private get commandPrefix() {
return (this.state.commandPrefix || "gh") + " ";
return (this.state.commandPrefix || "!gh") + " ";
}
public isInterestedInStateEvent(eventType: string, stateKey: string) {