workarounds for people that re-install and end up polluting everybody's databases with stale entries

This commit is contained in:
friendica
2013-05-16 20:21:12 -07:00
parent 98018f4969
commit deedac6ae5
3 changed files with 28 additions and 7 deletions

View File

@@ -321,8 +321,8 @@ function notifier_run($argv, $argc){
$sql_extra = (($private) ? "" : " or hubloc_url = '" . z_root() . "' ");
$r = q("select distinct(hubloc_callback),hubloc_host,hubloc_sitekey from hubloc
where hubloc_hash in (" . implode(',',$recipients) . ") $sql_extra group by hubloc_callback");
$r = q("select distinct hubloc_sitekey, hubloc_callback, hubloc_host from hubloc
where hubloc_hash in (" . implode(',',$recipients) . ") $sql_extra group by hubloc_sitekey");
if(! $r) {
logger('notifier: no hubs');
return;