fix: random generated uuid will be full length (not 7 characters)
This commit is contained in:
@@ -338,7 +338,7 @@ function fqdnLabelsForTraefik(string $uuid, Collection $domains, bool $is_force_
|
||||
foreach ($domains as $loop => $domain) {
|
||||
try {
|
||||
if ($generate_unique_uuid) {
|
||||
$uuid = new Cuid2(7);
|
||||
$uuid = new Cuid2();
|
||||
}
|
||||
|
||||
$url = Url::fromString($domain);
|
||||
|
||||
Reference in New Issue
Block a user