only list undeleted hublocs in zot_finger

This commit is contained in:
friendica 2013-11-28 16:46:47 -08:00
parent 13e73c005a
commit fafba385c1

View file

@ -19,7 +19,8 @@ function zot_new_uid($channel_nick) {
/**
* @function zot_get_hublocs($hash)
* Given a zot hash, return all distinct hubs
* Given a zot hash, return all distinct hubs.
* This function is used in building the zot discovery packet
* @param string $hash - xchan_hash
* @retuns array
*
@ -27,10 +28,12 @@ function zot_new_uid($channel_nick) {
function zot_get_hublocs($hash) {
$ret = q("select * from hubloc where hubloc_hash = '%s' group by hubloc_url ",
dbesc($hash)
);
/** Only search for active hublocs - e.g. those that haven't been marked deleted */
$ret = q("select * from hubloc where hubloc_hash = '%s' and not ( hubloc_flags & %d ) group by hubloc_url ",
dbesc($hash),
intval(HUBLOC_FLAGS_DELETED)
);
return $ret;
}