diff options
author | Mario <mario@mariovavti.com> | 2025-03-09 16:14:46 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2025-03-09 16:14:46 +0000 |
commit | a0c98e070ea74a17db9f29f294aee2964352cd81 (patch) | |
tree | 06cc932c4fb29f5510fc96f5d57b7a7882112092 | |
parent | 4ba470318c6d5e87e373feef3ead4d4089f19ddd (diff) | |
parent | 7d6202be139910376516e1fc8bac7eebf1117044 (diff) | |
download | volse-hubzilla-a0c98e070ea74a17db9f29f294aee2964352cd81.tar.gz volse-hubzilla-a0c98e070ea74a17db9f29f294aee2964352cd81.tar.bz2 volse-hubzilla-a0c98e070ea74a17db9f29f294aee2964352cd81.zip |
Merge branch 'dev' into 10.2RC
-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, '@'); } |