diff options
author | Mario <mario@mariovavti.com> | 2025-03-09 16:13:47 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2025-03-09 16:13:47 +0000 |
commit | 7d6202be139910376516e1fc8bac7eebf1117044 (patch) | |
tree | cd4a99def76ef18adb0429cd762e99a328a10e58 /Zotlabs | |
parent | e948aaf751d6f9202c15a29418ef3ef32f7c2b22 (diff) | |
download | volse-hubzilla-7d6202be139910376516e1fc8bac7eebf1117044.tar.gz volse-hubzilla-7d6202be139910376516e1fc8bac7eebf1117044.tar.bz2 volse-hubzilla-7d6202be139910376516e1fc8bac7eebf1117044.zip |
wrong logic
Diffstat (limited to 'Zotlabs')
-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, '@'); } |