diff options
-rw-r--r-- | Zotlabs/Lib/Connect.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Connect.php b/Zotlabs/Lib/Connect.php index a68f73e6c..9f6d077b4 100644 --- a/Zotlabs/Lib/Connect.php +++ b/Zotlabs/Lib/Connect.php @@ -30,7 +30,7 @@ class Connect { } // Remove a possible leading @ - if (!str_starts_with($url, '@')) { + if (str_starts_with($url, '@')) { $url = ltrim($url, '@'); } |