Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/node-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: npm run test

jsunit:
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, self-hosted]
needs: versions

steps:
Expand Down
2 changes: 1 addition & 1 deletion lib/private/User/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ public function tryBasicAuthLogin(IRequest $request,
throw new LoginException();
} catch (PasswordLoginForbiddenException $ex) {
// If credentials were provided, they need to be valid, otherwise we do boom
throw new LoginException(previous: $ex);
throw new LoginException('', 0, $ex);
}
}
return false;
Expand Down
Loading