From: Michael Vogel Date: Mon, 27 Jul 2015 05:16:06 +0000 (+0200) Subject: Mark contacts from not reachable servers as unreachable X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e0955535902b13982f58c063d47ab00a9d4d1db9;p=friendica.git Mark contacts from not reachable servers as unreachable --- diff --git a/include/discover_poco.php b/include/discover_poco.php index bd3483307d..687698b44f 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -108,7 +108,9 @@ function discover_users() { if (++$checked > 100) return; - } + } else + q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", + dbesc(datetime_convert()), dbesc(normalise_link($user["url"]))); } } }