FIX: #507 Tag URLs do not respect APP_URL

see https://github.com/linuxserver/Heimdall/issues/507
This commit is contained in:
risiko79
2021-08-29 19:55:55 +02:00
parent 61a5a1a8b0
commit a5b7f10809
2 changed files with 3 additions and 3 deletions

View File

@@ -106,7 +106,7 @@ class Item extends Model
public function getLinkAttribute()
{
if((int)$this->type === 1) {
return '/tag/'.$this->url;
return env('APP_URL').'/tag/'.$this->url;
} else {
return $this->url;
}