Maximum limit for facebook is now max higher than 400.

This commit is contained in:
Michael Vogel 2012-03-31 16:34:28 +02:00
parent e688a2608a
commit 5e9405e9dc
1 changed files with 6 additions and 2 deletions

View File

@ -53,7 +53,10 @@
* - Implement a configuration option to set the polling interval system-wide
*/
define('FACEBOOK_MAXPOSTLEN', 420);
// Size of maximum post length increased
// see http://www.facebook.com/schrep/posts/203969696349811
// define('FACEBOOK_MAXPOSTLEN', 420);
define('FACEBOOK_MAXPOSTLEN', 63206);
function facebook_install() {
@ -891,7 +894,8 @@ function facebook_post_hook(&$a,&$b) {
$msg = substr($msg, 0, FACEBOOK_MAXPOSTLEN - strlen($shortlink) - 4);
$msg .= '... ' . $shortlink;
}
if(! strlen($msg))
if(!strlen($msg) and !strlen($link) and !strlen($image))
return;
logger('Facebook post: msg=' . $msg, LOGGER_DATA);