mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-02 08:13:02 +00:00
Bluesky: remove @ and spaces from the handle
This commit is contained in:
parent
b6d575c37f
commit
50d8d44489
1 changed files with 1 additions and 1 deletions
|
@ -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']));
|
||||
|
|
Loading…
Reference in a new issue