]> git.mxchange.org Git - friendica-addons.git/commitdiff
Bluesky: remove @ and spaces from the handle
authorMichael <heluecht@pirati.ca>
Thu, 7 Dec 2023 12:03:53 +0000 (12:03 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 7 Dec 2023 12:03:53 +0000 (12:03 +0000)
bluesky/bluesky.php

index 1bbc6356ffaf1b28f6059e7ae515a569ac48e234..2f70ed745c2d481f5e993ae51e7309f3eb1d07fa 100644 (file)
@@ -402,7 +402,7 @@ function bluesky_settings_post(array &$b)
        $old_handle = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'handle');
        $old_did    = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'did');
 
-       $handle = $_POST['bluesky_handle'];
+       $handle = trim($_POST['bluesky_handle'], ' @');
 
        DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'bluesky', 'post',            intval($_POST['bluesky']));
        DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'bluesky', 'post_by_default', intval($_POST['bluesky_bydefault']));