I noticed the module was posting to friendfeed even for content types I had unchecked. I was able to fix it by changing this (in the friendfeed_nodeapi method):

      $types = isset($user->friendfeed_contenttypes) ?  $user->friendfeed_contenttypes : array();

to this: (from p.262 of pro drupal development, 2nd ed)

        $types = array_filter($user->friendfeed_contenttypes);
CommentFileSizeAuthor
#2 fr.patch1.11 KBrobloach

Comments

qasimzee’s picture

subscribe

robloach’s picture

Version: 5.x-1.x-dev » 6.x-1.x-dev
StatusFileSize
new1.11 KB

How about this?

qasimzee’s picture

@Rob Loach: I have committed the code after fixing this issue in 6.x. Can you please test and add a release for that?

Anonymous’s picture

Does this also fix the posting to friendfeed when content has not been set to "publish" at all?