]> git.mxchange.org Git - friendica-addons.git/commitdiff
IFTTT: Set the extid, removed legacy Facebook stuff
authorMichael Vogel <icarus@dabo.de>
Sun, 13 Dec 2020 18:42:45 +0000 (19:42 +0100)
committerMichael Vogel <icarus@dabo.de>
Sun, 13 Dec 2020 18:42:45 +0000 (19:42 +0100)
ifttt/ifttt.php

index e534b7054768f2f8550e6f4cc9768b61b8548684..a494b5f7be9db061a1b61be09fd3d7575064d52a 100644 (file)
@@ -169,12 +169,6 @@ function ifttt_message($uid, $item)
        //$post['date'] = $item['date'];
        //$post['uri'] = $item['url'];
 
-       if (!empty($item['url']) && strstr($item['url'], 'facebook.com')) {
-               $hash = hash('ripemd128', $item['url']);
-               $post['extid'] = Protocol::FACEBOOK;
-               $post['message_id'] = Item::newURI($uid, Protocol::FACEBOOK . ':' . $hash);
-       }
-
        if ($item['type'] == 'link') {
                $link = $item['link'];
                $data = PageInfo::queryUrl($item['link']);
@@ -197,5 +191,7 @@ function ifttt_message($uid, $item)
                $link = hash('ripemd128', $item['msg']);
        }
 
+       $post['extid'] = $link;
+
        Post\Delayed::add($link, $post, PRIORITY_MEDIUM, true);
 }