We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ac70d6 commit d59d8cdCopy full SHA for d59d8cd
app/Livewire/Project/Application/General.php
@@ -331,10 +331,10 @@ public function set_redirect()
331
public function submit($showToaster = true)
332
{
333
try {
334
- Url::fromString($this->application->fqdn, ['http', 'https']);
335
$this->application->fqdn = str($this->application->fqdn)->replaceEnd(',', '')->trim();
336
$this->application->fqdn = str($this->application->fqdn)->replaceStart(',', '')->trim();
337
$this->application->fqdn = str($this->application->fqdn)->trim()->explode(',')->map(function ($domain) {
+ Url::fromString($domain, ['http', 'https']);
338
return str($domain)->trim()->lower();
339
});
340
$this->application->fqdn = $this->application->fqdn->unique()->implode(',');
0 commit comments