mirror of
https://github.com/friendica/friendica
synced 2024-11-10 09:02:53 +00:00
Merge pull request #1874 from annando/1509-pubsub
Bugfix: pubsub tend to unsubscribe subscriptions in the past
This commit is contained in:
commit
658c99dcf3
1 changed files with 12 additions and 10 deletions
|
@ -63,10 +63,11 @@ function pubsub_init(&$a) {
|
|||
intval($owner['uid'])
|
||||
);
|
||||
if(! count($r)) {
|
||||
logger('pubsub: contact not found.');
|
||||
logger('pubsub: contact '.$contact_id.' not found.');
|
||||
hub_return(false, '');
|
||||
}
|
||||
|
||||
if ($hub_topic)
|
||||
if(! link_compare($hub_topic,$r[0]['poll'])) {
|
||||
logger('pubsub: hub topic ' . $hub_topic . ' != ' . $r[0]['poll']);
|
||||
// should abort but let's humour them.
|
||||
|
@ -85,6 +86,7 @@ function pubsub_init(&$a) {
|
|||
logger('pubsub: unsubscribe success');
|
||||
}
|
||||
|
||||
if ($hub_mode)
|
||||
$r = q("UPDATE `contact` SET `subhub` = %d WHERE `id` = %d",
|
||||
intval($subscribe),
|
||||
intval($contact['id'])
|
||||
|
|
Loading…
Reference in a new issue