]> git.mxchange.org Git - friendica.git/commitdiff
Adding "(AP)" to the server name when posted via AP
authorMichael <heluecht@pirati.ca>
Sat, 15 Sep 2018 10:13:41 +0000 (10:13 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 15 Sep 2018 10:13:41 +0000 (10:13 +0000)
src/Content/ContactSelector.php

index dc158cfa5f7b5429fb4d8f4766407eb8e981e0e6..6a701f25f355d11b87db1afe07f5222cb3584236 100644 (file)
@@ -107,6 +107,10 @@ class ContactSelector
 
                        if (DBA::isResult($r)) {
                                $networkname = $r['platform'];
+
+                               if ($s == Protocol::ACTIVITYPUB) {
+                                       $networkname .= ' (AP)';
+                               }
                        }
                }