query accelerator failures should silently fall back to non-accelerated mode

This commit is contained in:
Shish 2018-07-19 19:31:37 +01:00
parent 71445fdf96
commit 64e2f7fe53

View File

@ -210,7 +210,7 @@ class Image {
}
public static function query_accelerator($req) {
$fp = fsockopen("127.0.0.1", 21212);
$fp = @fsockopen("127.0.0.1", 21212);
if (!$fp) {
return null;
}