diff options
author | Friendika <info@friendika.com> | 2010-11-22 19:58:35 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-22 19:58:35 -0800 |
commit | 1278305de92935bdc4ee2f27076fbbb83917cbec (patch) | |
tree | d773b8986095aced27038b6e49d07386f4167fe4 /include/salmon.php | |
parent | 1b14c1733ba9fcd016eb7c8ed79a25633a5d08ae (diff) | |
download | volse-hubzilla-1278305de92935bdc4ee2f27076fbbb83917cbec.tar.gz volse-hubzilla-1278305de92935bdc4ee2f27076fbbb83917cbec.tar.bz2 volse-hubzilla-1278305de92935bdc4ee2f27076fbbb83917cbec.zip |
salmon error handling issue
Diffstat (limited to 'include/salmon.php')
-rw-r--r-- | include/salmon.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/salmon.php b/include/salmon.php index d998b2704..49384efea 100644 --- a/include/salmon.php +++ b/include/salmon.php @@ -182,7 +182,9 @@ EOT; // check for success, e.g. 2xx - if(($return_code >= 200) && ($return_code < 300)) { + if($return_code > 299) { + + logger('slapper: compliant salmon failed. Falling back to status.net hack'); // Entirely likely that their salmon implementation is // non-compliant. Let's try once more, this time only signing |