mirror of
https://github.com/friendica/friendica
synced 2025-04-26 13:50:11 +00:00
Fix malformatted tag scheme
This commit is contained in:
parent
61a2b225bb
commit
22027f8451
2 changed files with 5 additions and 1 deletions
|
@ -93,6 +93,10 @@ class Tag
|
|||
return;
|
||||
}
|
||||
|
||||
if ((substr($url, 0, 7) == 'https//') || (substr($url, 0, 6) == 'http//')) {
|
||||
Logger::notice('Wrong scheme in url', ['url' => $url, 'callstack' => System::callstack(20)]);
|
||||
}
|
||||
|
||||
if (!$probing) {
|
||||
$condition = ['nurl' => Strings::normaliseLink($url), 'uid' => 0, 'deleted' => false];
|
||||
$contact = DBA::selectFirst('contact', ['id'], $condition, ['order' => ['id']]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue