You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/commands/Syntax/SetupCommand.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -179,7 +179,7 @@ protected function setUpChat()
179
179
$this->chatDetails->port = $this->ask('What is the chat port? [Hit enter to leave as 1337]', 1337);
180
180
$this->chatDetails->backLog = $this->ask('How much back log should the chats get? [Hit enter to leave as 100]', 100);
181
181
$this->chatDetails->backFill = $this->ask('How much should the chats backfil on connect? [Hit enter to leave as 30]', 30);
182
-
$this->chatDetails->apiEndPoint = $this->ask('What is the chat url? [Hit enter to leave as '. $this->siteUrl .']', $this->siteUrl);
182
+
$this->chatDetails->apiEndPoint = $this->ask('What is the chat url?');
183
183
$this->chatDetails->connectionMessage = $this->confirm('Should the chats show a connection message? [Hit enter to leave as true]', true) ? true : false;
0 commit comments