]> git.mxchange.org Git - friendica.git/commitdiff
Akkoma is added to the federation statistics
authorMichael <heluecht@pirati.ca>
Thu, 6 Oct 2022 04:57:43 +0000 (04:57 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 6 Oct 2022 04:57:43 +0000 (04:57 +0000)
src/Module/Admin/Federation.php

index b336f5ecda2783255cf21cfde4b1ee2b9a0d37fb..5144b1e7657ad5367bd5989b3612a1804f7cce08 100644 (file)
@@ -38,6 +38,7 @@ class Federation extends BaseAdmin
                // We list the more common systems by name. The rest is counted as "other"
                $systems = [
                        'friendica'    => ['name' => 'Friendica', 'color' => '#ffc018'], // orange from the logo
+                       'akkoma'       => ['name' => 'Akkoma', 'color' => '#9574cd'], // Color from the page
                        'birdsitelive' => ['name' => 'BirdsiteLIVE', 'color' => '#1b6ec2'], // Color from the page
                        'bookwyrm'     => ['name' => 'BookWyrm', 'color' => '#00d1b2'], // Color from the page
                        'castopod'     => ['name' => 'Castopod', 'color' => '#00564a'], // Background color from the page
@@ -153,7 +154,7 @@ class Federation extends BaseAdmin
 
                        if ($platform == 'friendica') {
                                $versionCounts = self::reformaFriendicaVersions($versionCounts);
-                       } elseif ($platform == 'pleroma') {
+                       } elseif (in_array($platform, ['pleroma', 'akkoma'])) {
                                $versionCounts = self::reformaPleromaVersions($versionCounts);
                        } elseif ($platform == 'diaspora') {
                                $versionCounts = self::reformaDiasporaVersions($versionCounts);