|
...
|
...
|
@@ -224,6 +224,7 @@ class HtmlLanguageCollect extends Command |
|
|
|
$scheme = $arr['scheme'] ?? '';
|
|
|
|
$host = $arr['host'] ?? '';
|
|
|
|
$path = $arr['path'] ?? '';
|
|
|
|
$query = $arr['query'] ?? '';
|
|
|
|
|
|
|
|
if (
|
|
|
|
(strpos($host, '.globalso.') === false) &&
|
|
...
|
...
|
@@ -236,7 +237,7 @@ class HtmlLanguageCollect extends Command |
|
|
|
return [
|
|
|
|
'download' => true,
|
|
|
|
'url' => $url,
|
|
|
|
'url_complete' => ($scheme ?: 'https') . '://' . ($host ?: $domain) . $path
|
|
|
|
'url_complete' => ($scheme ?: 'https') . '://' . ($host ?: $domain) . $path . ($query ? '?' . $query : '')
|
|
|
|
];
|
|
|
|
} else {
|
|
|
|
return [
|
...
|
...
|
|