Explorar el Código

Update extensionController.php (#4571)

maTh hace 3 años
padre
commit
b1a74a3476
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      app/Controllers/extensionController.php

+ 1 - 1
app/Controllers/extensionController.php

@@ -42,7 +42,7 @@ class FreshRSS_extension_Controller extends FreshRSS_ActionController {
 	 */
 	protected function getAvailableExtensionList() {
 		$extensionListUrl = 'https://raw.githubusercontent.com/FreshRSS/Extensions/master/extensions.json';
-		$json = file_get_contents($extensionListUrl);
+		$json = @file_get_contents($extensionListUrl);
 
 		// we ran into problems, simply ignore them
 		if ($json === false) {