This commit is contained in:
Toba Shoyombo 2019-08-09 01:53:09 -05:00
Родитель 4f56c63b1e
Коммит f80b0527a1
1 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -403,7 +403,15 @@ class RecipeService {
if(!$host) { throw new \Exception('Could not parse URL'); }
$html = file_get_contents($url);
$opts = [
"http" => [
"method" => "GET",
"header" => "User-Agent: Nextcloud Cookbook App"
]
];
$context = stream_context_create($opts);
$html = file_get_contents($url, false, $context);
if(!$html) { throw new \Exception('Could not fetch site ' . $url); }