Improved license text

This commit is contained in:
Michael 2022-06-13 10:03:34 +00:00
parent a5b5f9316d
commit c1a64b77c0

View file

@ -1831,22 +1831,38 @@ class Contact
switch ($platform) { switch ($platform) {
case 'mastodon': case 'mastodon':
// @see https://github.com/mastodon/mastodon/tree/main/public/avatars/original/missing.png /**
* Picture credits
* @license GNU Affero General Public License v3.0
* @link https://github.com/mastodon/mastodon/tree/main/public/avatars/original/missing.png
*/
$default = '/images/default/mastodon.png'; $default = '/images/default/mastodon.png';
break; break;
case 'pleroma': case 'pleroma':
// @see https://git.pleroma.social/pleroma/pleroma/-/blob/develop/priv/static/images/avi.png /**
* Picture credits
* @license GNU Affero General Public License v3.0
* @link https://git.pleroma.social/pleroma/pleroma/-/blob/develop/priv/static/images/avi.png
*/
$default = '/images/default/pleroma.png'; $default = '/images/default/pleroma.png';
break; break;
case 'diaspora': case 'diaspora':
// @see https://github.com/diaspora/diaspora/ /**
* Picture credits
* @license GNU Affero General Public License v3.0
* @link https://github.com/diaspora/diaspora/
*/
$default = '/images/default/diaspora.png'; $default = '/images/default/diaspora.png';
break; break;
case 'peertube': case 'peertube':
// @see https://github.com/Chocobozzz/PeerTube/blob/develop/client/src/assets/images/default-avatar-video-channel.png /**
* Picture credits
* @license GNU Affero General Public License v3.0
* @link https://github.com/Chocobozzz/PeerTube/blob/develop/client/src/assets/images/default-avatar-video-channel.png
*/
$default = '/images/default/peertube.png'; $default = '/images/default/peertube.png';
break; break;
} }