mirror of
https://github.com/SkillDisplay/PHPToolKit.git
synced 2024-11-16 22:06:08 +01:00
[BUGFIX] Use correct base URL for media
This commit is contained in:
parent
2977ee8781
commit
a42f76226a
2 changed files with 2 additions and 2 deletions
|
@ -65,7 +65,7 @@ class Brand
|
|||
return '';
|
||||
}
|
||||
|
||||
return $this->settings->getMySkillDisplayUrl() . '/' . $mediaUrl;
|
||||
return $this->settings->getAPIUrl() . '/' . $mediaUrl;
|
||||
}
|
||||
|
||||
// In order to support frameworks / APIs that expect "getter".
|
||||
|
|
|
@ -86,7 +86,7 @@ class SkillSet
|
|||
return '';
|
||||
}
|
||||
|
||||
return $this->settings->getMySkillDisplayUrl() . '/' . $mediaUrl;
|
||||
return $this->settings->getAPIUrl() . '/' . $mediaUrl;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue