Only remove when "acct:" is the beginning

This commit is contained in:
Michael 2019-03-14 21:18:07 +00:00
parent 09b6978e4c
commit cd1fc091cb
1 changed files with 3 additions and 1 deletions

View File

@ -63,7 +63,9 @@ function follow_content(App $a)
$url = Strings::escapeTags(trim(defaults($_REQUEST, 'url', '')));
// Issue 6874: Allow remote following from Peertube
$url = str_replace('acct:', '', $url);
if (strpos($url, 'acct:') === 0) {
$url = str_replace('acct:', '', $url);
}
if (!$url) {
$a->internalRedirect($return_path);