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);
Comments
Comment #1
qasimzee commentedsubscribe
Comment #2
robloachHow about this?
Comment #3
qasimzee commented@Rob Loach: I have committed the code after fixing this issue in 6.x. Can you please test and add a release for that?
Comment #4
Anonymous (not verified) commentedDoes this also fix the posting to friendfeed when content has not been set to "publish" at all?