Skip to content

Commit 1437d50

Browse files
authored
Merge pull request #63221 from nextcloud/backport/63216/stable24
[stable24] chore: Fix PHP 7.3 support
2 parents 029e3dd + 4ad4de6 commit 1437d50

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/node-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: npm run test
5555

5656
jsunit:
57-
runs-on: ubuntu-latest
57+
runs-on: [ubuntu-latest, self-hosted]
5858
needs: versions
5959

6060
steps:

lib/private/User/Session.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ public function tryBasicAuthLogin(IRequest $request,
623623
throw new LoginException();
624624
} catch (PasswordLoginForbiddenException $ex) {
625625
// If credentials were provided, they need to be valid, otherwise we do boom
626-
throw new LoginException(previous: $ex);
626+
throw new LoginException('', 0, $ex);
627627
}
628628
}
629629
return false;

0 commit comments

Comments
 (0)