Detect the hide status when it hadn't been detected before

pull/7612/head
Michael 2019-09-10 20:20:34 +00:00
rodzic 3c7fe5fc1b
commit a733a00ea9
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -394,7 +394,7 @@ class Probe
$data['network'] = Protocol::PHANTOM;
}
if (empty($data['hide']) && ($data['network'] != Protocol::DFRN)) {
if (!isset($data['hide']) && in_array($data['network'], Protocol::FEDERATED)) {
$data['hide'] = self::getHideStatus($data['url']);
}