Bugfix: pubsub tend to unsubscribe subscriptions in the past

This commit is contained in:
Michael Vogel 2015-09-01 00:12:15 +02:00
parent af48217465
commit 389738b1c1
1 changed files with 12 additions and 10 deletions

View File

@ -63,14 +63,15 @@ function pubsub_init(&$a) {
intval($owner['uid']) intval($owner['uid'])
); );
if(! count($r)) { if(! count($r)) {
logger('pubsub: contact not found.'); logger('pubsub: contact '.$contact_id.' not found.');
hub_return(false, ''); hub_return(false, '');
} }
if(! link_compare($hub_topic,$r[0]['poll'])) { if ($hub_topic)
logger('pubsub: hub topic ' . $hub_topic . ' != ' . $r[0]['poll']); if(! link_compare($hub_topic,$r[0]['poll'])) {
// should abort but let's humour them. logger('pubsub: hub topic ' . $hub_topic . ' != ' . $r[0]['poll']);
} // should abort but let's humour them.
}
$contact = $r[0]; $contact = $r[0];
@ -85,10 +86,11 @@ function pubsub_init(&$a) {
logger('pubsub: unsubscribe success'); logger('pubsub: unsubscribe success');
} }
$r = q("UPDATE `contact` SET `subhub` = %d WHERE `id` = %d", if ($hub_mode)
intval($subscribe), $r = q("UPDATE `contact` SET `subhub` = %d WHERE `id` = %d",
intval($contact['id']) intval($subscribe),
); intval($contact['id'])
);
hub_return(true, $hub_challenge); hub_return(true, $hub_challenge);
} }