Merge pull request #53845 from nextcloud/chore/code-style

chore(AccountManager): adjust code style for cs-fixer
This commit is contained in:
Joas Schilling 2025-07-07 12:53:49 +02:00 committed by GitHub
commit f9cdb947fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -752,8 +752,8 @@ class AccountManager implements IAccountManager {
foreach ($decoded['links'] as $link) {
// have application/activity+json or application/ld+json
if (isset($link['type']) && (
$link['type'] === 'application/activity+json' ||
$link['type'] === 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"'
$link['type'] === 'application/activity+json'
|| $link['type'] === 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"'
)) {
$found = true;
break;