facebook - don't fetch wall feeds if no linking is set

This commit is contained in:
Friendika 2011-08-19 04:37:11 -07:00
parent 68c237f79f
commit 9b2d408d73
1 changed files with 2 additions and 0 deletions

View File

@ -395,6 +395,8 @@ function facebook_cron($a,$b) {
$r = q("SELECT * FROM `pconfig` WHERE `cat` = 'facebook' AND `k` = 'post' AND `v` = '1' ORDER BY RAND() ");
if(count($r)) {
foreach($r as $rr) {
if(get_pconfig($rr['uid'],'facebook','no_linking'))
continue;
// check for new friends once a day
$last_friend_check = get_pconfig($rr['uid'],'facebook','friend_check');
if($last_friend_check)