]> git.mxchange.org Git - friendica-addons.git/commitdiff
And another good library
authorMichael <heluecht@pirati.ca>
Wed, 12 Jun 2019 09:07:30 +0000 (09:07 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 12 Jun 2019 09:07:30 +0000 (09:07 +0000)
blockbot/blockbot.php
twitter/twitter.php

index e6ca684067cfa67b7e70b098cfeba56a59ccc7f7..0a73b6e1f9a075b2796dddee6f53cb9ad8d32337 100644 (file)
@@ -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)) {
index 4065691828f30610c35e8e259f5327efd1b03f61..33ee3e1eed53d223ae51c6b7770e38a604931e97 100644 (file)
@@ -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"])) {