aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2025-07-07 12:53:49 +0200
committerGitHub <noreply@github.com>2025-07-07 12:53:49 +0200
commitf9cdb947fcf928f431001fae02e2dcc05d5ebcbd (patch)
treedbbbf92c0cbc737f6f2e7034302ae6c93943c0b7
parent9a2cc58d4febdc65b39274c14746a63fde8ee0d8 (diff)
parent47e77f27c3bb5bf5549d9f6c8e6b0a4de762f039 (diff)
downloadnextcloud-server-f9cdb947fcf928f431001fae02e2dcc05d5ebcbd.tar.gz
nextcloud-server-f9cdb947fcf928f431001fae02e2dcc05d5ebcbd.zip
Merge pull request #53845 from nextcloud/chore/code-style
chore(AccountManager): adjust code style for cs-fixer
-rw-r--r--lib/private/Accounts/AccountManager.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Accounts/AccountManager.php b/lib/private/Accounts/AccountManager.php
index 0922f802068..9c7c35d4a6b 100644
--- a/lib/private/Accounts/AccountManager.php
+++ b/lib/private/Accounts/AccountManager.php
@@ -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;