Adding "(AP)" to the server name when posted via AP

This commit is contained in:
Michael 2018-09-15 10:13:41 +00:00
parent 957c70d1c6
commit 35854a0ad1
1 changed files with 4 additions and 0 deletions

View File

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