Hi,
Anybody know if daemon synctwitterfriends.php is needed, when the only function
enabled on the instance is to push your messages to your twitter account? (Not
from twitter to gnusocial)
Ref. setting - $config['twitterimport']['enabled'] = false;
If I understand it correctly the synctwitterfriends.php does not need to be
started if twitter import is not enabled and should also be checked for the
common config twitterimport = enabled.
Regards,
Knut Erik
---
(From TwitterPlugin.php)
function onGetValidDaemons(&$daemons)
{
if (self::hasKeys()) {
array_push(
$daemons,
INSTALLDIR
. '/plugins/TwitterBridge/daemons/synctwitterfriends.php'
);
if (common_config('twitterimport', 'enabled')) {
array_push(
$daemons,
INSTALLDIR
. '/plugins/TwitterBridge/daemons/twitterstatusfetcher.php'
);
}
}
return true;
}