Improve license comment
This commit is contained in:
parent
d9fb081db9
commit
70b9a8114d
1 changed files with 10 additions and 6 deletions
|
@ -1861,15 +1861,19 @@ class Contact
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'peertube':
|
case 'peertube':
|
||||||
|
if ($type == Contact::TYPE_COMMUNITY) {
|
||||||
/**
|
/**
|
||||||
* Picture credits
|
* Picture credits
|
||||||
* @license GNU Affero General Public License v3.0
|
* @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
|
||||||
*/
|
*/
|
||||||
if ($type == Contact::TYPE_COMMUNITY) {
|
|
||||||
// @link https://github.com/Chocobozzz/PeerTube/blob/develop/client/src/assets/images/default-avatar-video-channel.png
|
|
||||||
$default = '/images/default/peertube-channel.png';
|
$default = '/images/default/peertube-channel.png';
|
||||||
} else {
|
} else {
|
||||||
// @link https://github.com/Chocobozzz/PeerTube/blob/develop/client/src/assets/images/default-avatar-account.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-account.png
|
||||||
|
*/
|
||||||
$default = '/images/default/peertube-account.png';
|
$default = '/images/default/peertube-account.png';
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue