Changed getLink function name

This commit is contained in:
marcdeb1 2018-10-10 14:40:42 +02:00
parent 1505548a3a
commit 69734f2add

View file

@ -5,7 +5,7 @@ namespace App\Model\Entity;
use Cake\ORM\Entity;
class Claim extends Entity {
function getLink() {
function getLbryLink() {
$link = $this->Name;
if (isset($this->Publisher->Name)) {
$link = $this->Publisher->Name . '/' . $link;