mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-02 08:32:57 +00:00
Merge pull request 'Bluesky: remove @ and spaces from the handle' (#1444) from heluecht/friendica-addons:bluesky-trim-handle into 2023.09-rc
Reviewed-on: https://git.friendi.ca/friendica/friendica-addons/pulls/1444
This commit is contained in:
commit
3b5e8901dc
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