diff options
Diffstat (limited to 'lib/omb.php')
-rw-r--r-- | lib/omb.php | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/omb.php b/lib/omb.php index 0566701ff..9133af7a0 100644 --- a/lib/omb.php +++ b/lib/omb.php @@ -80,9 +80,14 @@ function omb_broadcast_notice($notice) $posted = array(); while ($rp->fetch()) { - if (isset($posted[$rp->postnoticeurl])) { - /* We already posted to this url. */ - continue; + if (!array_key_exists($rp->postnoticeurl, $posted)) { + common_log(LOG_DEBUG, 'Posting to ' . $rp->postnoticeurl); + if (omb_post_notice_keys($notice, $rp->postnoticeurl, $rp->token, $rp->secret)) { + common_log(LOG_DEBUG, 'Finished to ' . $rp->postnoticeurl); + $posted[$rp->postnoticeurl] = true; + } else { + common_log(LOG_DEBUG, 'Failed posting to ' . $rp->postnoticeurl); + } } common_debug('Posting to ' . $rp->postnoticeurl, __FILE__); |