mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-20 05:21:27 +00:00
commit
3486c5deb3
2 changed files with 3 additions and 2 deletions
|
@ -18,6 +18,7 @@
|
||||||
- Update federation config, enable remote follows by default ([59702d40](https://github.com/pixelfed/pixelfed/commit/59702d40))
|
- Update federation config, enable remote follows by default ([59702d40](https://github.com/pixelfed/pixelfed/commit/59702d40))
|
||||||
- Update ApiV1Controller, fix followAccountById with firstOrCreate() ([1d52ad0b](https://github.com/pixelfed/pixelfed/commit/1d52ad0b))
|
- Update ApiV1Controller, fix followAccountById with firstOrCreate() ([1d52ad0b](https://github.com/pixelfed/pixelfed/commit/1d52ad0b))
|
||||||
- Update AccountService, fix delete status ([8b7121f9](https://github.com/pixelfed/pixelfed/commit/8b7121f9))
|
- Update AccountService, fix delete status ([8b7121f9](https://github.com/pixelfed/pixelfed/commit/8b7121f9))
|
||||||
|
- Update ap helpers, fix duplicate entry bug ([85cfa1ba](https://github.com/pixelfed/pixelfed/commit/85cfa1ba))
|
||||||
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
||||||
|
|
||||||
## [v0.11.4 (2022-10-04)](https://github.com/pixelfed/pixelfed/compare/v0.11.3...v0.11.4)
|
## [v0.11.4 (2022-10-04)](https://github.com/pixelfed/pixelfed/compare/v0.11.3...v0.11.4)
|
||||||
|
|
|
@ -742,10 +742,10 @@ class Helpers {
|
||||||
[
|
[
|
||||||
'domain' => strtolower($domain),
|
'domain' => strtolower($domain),
|
||||||
'username' => Purify::clean($webfinger),
|
'username' => Purify::clean($webfinger),
|
||||||
'webfinger' => Purify::clean($webfinger),
|
|
||||||
'key_id' => $res['publicKey']['id'],
|
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
'webfinger' => Purify::clean($webfinger),
|
||||||
|
'key_id' => $res['publicKey']['id'],
|
||||||
'remote_url' => $res['id'],
|
'remote_url' => $res['id'],
|
||||||
'name' => isset($res['name']) ? Purify::clean($res['name']) : 'user',
|
'name' => isset($res['name']) ? Purify::clean($res['name']) : 'user',
|
||||||
'bio' => isset($res['summary']) ? Purify::clean($res['summary']) : null,
|
'bio' => isset($res['summary']) ? Purify::clean($res['summary']) : null,
|
||||||
|
|
Loading…
Reference in a new issue