mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-21 21:03:42 +00:00
And another good library
This commit is contained in:
parent
6646d0f963
commit
e52e6f7be2
2 changed files with 3 additions and 2 deletions
|
@ -70,7 +70,7 @@ function blockbot_init_1(App $a) {
|
|||
'Python-urllib/', 'Liferea/', 'aiohttp/', 'WordPress.com Reader', 'hackney/',
|
||||
'Faraday v', 'okhttp', 'UniversalFeedParser', 'PixelFedBot', 'python-requests',
|
||||
'WordPress/', 'http.rb/', 'Apache-HttpClient/', 'WordPress.com;', 'Pleroma',
|
||||
'Dispatch/', 'Ruby', 'Uptimebot/', 'Java/'];
|
||||
'Dispatch/', 'Ruby', 'Uptimebot/', 'Java/', 'libwww-perl/'];
|
||||
|
||||
foreach ($agents as $agent) {
|
||||
if (stristr($_SERVER['HTTP_USER_AGENT'], $agent)) {
|
||||
|
|
|
@ -575,7 +575,7 @@ function twitter_post_hook(App $a, array &$b)
|
|||
return;
|
||||
}
|
||||
|
||||
Logger::log('twitter post invoked');
|
||||
Logger::notice('twitter post invoked', ['id' => $b['id'], 'guid' => $b['guid']]);
|
||||
|
||||
PConfig::load($b['uid'], 'twitter');
|
||||
|
||||
|
@ -610,6 +610,7 @@ function twitter_post_hook(App $a, array &$b)
|
|||
$b['body'] = twitter_update_mentions($b['body']);
|
||||
|
||||
$msgarr = ItemContent::getPlaintextPost($b, $max_char, true, 8);
|
||||
Logger::info('Got plaintext', $msgarr);
|
||||
$msg = $msgarr["text"];
|
||||
|
||||
if (($msg == "") && isset($msgarr["title"])) {
|
||||
|
|
Loading…
Reference in a new issue