mirror of
https://github.com/friendica/friendica
synced 2025-04-24 12:30:10 +00:00
Fix: Force baseUrl being a string
This commit is contained in:
parent
68d9e1f33c
commit
b0f880d0eb
5 changed files with 8 additions and 8 deletions
|
@ -232,7 +232,7 @@ class Import extends \Friendica\BaseModule
|
|||
}
|
||||
|
||||
$oldBaseUrl = $account['baseurl'];
|
||||
$newBaseUrl = $this->baseUrl;
|
||||
$newBaseUrl = (string)$this->baseUrl;
|
||||
|
||||
$oldAddr = str_replace('http://', '@', Strings::normaliseLink($oldBaseUrl));
|
||||
$newAddr = str_replace('http://', '@', Strings::normaliseLink($newBaseUrl));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue