mirror of
https://github.com/friendica/friendica
synced 2024-12-23 15:20:17 +00:00
Bugfix: pubsub tend to unsubscribe subscriptions in the past
This commit is contained in:
parent
af48217465
commit
389738b1c1
1 changed files with 12 additions and 10 deletions
|
@ -63,10 +63,11 @@ 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 ($hub_topic)
|
||||||
if(! link_compare($hub_topic,$r[0]['poll'])) {
|
if(! link_compare($hub_topic,$r[0]['poll'])) {
|
||||||
logger('pubsub: hub topic ' . $hub_topic . ' != ' . $r[0]['poll']);
|
logger('pubsub: hub topic ' . $hub_topic . ' != ' . $r[0]['poll']);
|
||||||
// should abort but let's humour them.
|
// should abort but let's humour them.
|
||||||
|
@ -85,6 +86,7 @@ function pubsub_init(&$a) {
|
||||||
logger('pubsub: unsubscribe success');
|
logger('pubsub: unsubscribe success');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($hub_mode)
|
||||||
$r = q("UPDATE `contact` SET `subhub` = %d WHERE `id` = %d",
|
$r = q("UPDATE `contact` SET `subhub` = %d WHERE `id` = %d",
|
||||||
intval($subscribe),
|
intval($subscribe),
|
||||||
intval($contact['id'])
|
intval($contact['id'])
|
||||||
|
|
Loading…
Reference in a new issue