]> git.mxchange.org Git - friendica-addons.git/commitdiff
Changed function name
authorMichael <heluecht@pirati.ca>
Mon, 9 Aug 2021 15:29:26 +0000 (15:29 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 9 Aug 2021 15:29:26 +0000 (15:29 +0000)
ifttt/ifttt.php
jappixmini/jappixmini.php
langfilter/langfilter.php
xmpp/xmpp.php

index 2cf452120a7b7eda7932ff7062493c11a14fa261..7ce21e614202bf5488dd3e22b6affefc6854b912 100644 (file)
@@ -57,7 +57,7 @@ function ifttt_settings(App $a, &$s)
        $s .= '<div id="ifttt-configuration-wrapper">';
        $s .= '<p>' . DI::l10n()->t('Create an account at <a href="http://www.ifttt.com">IFTTT</a>. Create three Facebook recipes that are connected with <a href="https://ifttt.com/maker">Maker</a> (In the form "if Facebook then Maker") with the following parameters:') . '</p>';
        $s .= '<h4>URL</h4>';
-       $s .= '<p>' . DI::baseUrl()->get() . '/ifttt/' . $a->getNickname() . '</p>';
+       $s .= '<p>' . DI::baseUrl()->get() . '/ifttt/' . $a->getUserNickname() . '</p>';
        $s .= '<h4>Method</h4>';
        $s .= '<p>POST</p>';
        $s .= '<h4>Content Type</h4>';
index 3d1a197275b22154b49d2d4c4ebb7b8dfea4220e..1740923b3a4a452090df3c2ae4c2e3fc0d65bca8 100644 (file)
@@ -283,7 +283,7 @@ function jappixmini_settings(App $a, &$s)
        }
 
        if (($username == "") && DI::config()->get("jappixmini", "default_user")) {
-               $username = $a->getNickname();
+               $username = $a->getUserNickname();
        }
 
        $info_text = DI::config()->get("jappixmini", "infotext");
index aaf6d16f637ba64d88db4f0bfa3e9bb7dde939e0..9bde281eceafeb662d372414c0fb2af6d489c92b 100644 (file)
@@ -105,7 +105,7 @@ function langfilter_prepare_body_content_filter(App $a, &$hook_data)
 
        // Never filter own messages
        // TODO: find a better way to extract this
-       $logged_user_profile = DI::baseUrl()->get() . '/profile/' . $a->getNickname();
+       $logged_user_profile = DI::baseUrl()->get() . '/profile/' . $a->getUserNickname();
        if ($logged_user_profile == $hook_data['item']['author-link']) {
                return;
        }
index c64a517a959355ee623e40705e5dd959a220cc72..510b2150cf69d223bfcb29c03f6b52023a292388 100644 (file)
@@ -153,7 +153,7 @@ function xmpp_converse(App $a)
                        DI::pConfig()->set(local_user(), "xmpp", "password", $password);
                }
 
-               $jid = $a->getNickname() . "@" . DI::baseUrl()->getHostname() . "/converse-" . Strings::getRandomHex(5);
+               $jid = $a->getUserNickname() . "@" . DI::baseUrl()->getHostname() . "/converse-" . Strings::getRandomHex(5);
 
                $auto_login = "auto_login: true,
                        authentication: 'login',