Skip to content
This repository was archived by the owner on Aug 2, 2025. It is now read-only.

Commit 6e79217

Browse files
committed
fix: don't rely on SBHS OAuth discovery endpoint (which is currently dead)
1 parent 3eee7e3 commit 6e79217

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

apps/client/RELEASE_NOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
You can open release notes by going to Settings -> About -> Release notes.
22

3+
## 1.9.11-beta
4+
5+
- Hotfix: don't rely on SBHS OAuth discovery endpoint (which is currently dead)
6+
37
## 1.9.10-beta
48

59
- Added more analytics

apps/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "client",
3-
"version": "1.9.10-beta",
3+
"version": "1.9.11-beta",
44
"type": "module",
55
"scripts": {
66
"dev": "npm-run-all --parallel dev:*",

apps/client/src/main.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ const oauthClient = new OAuth2Client({
7878
server: "https://auth.sbhs.net.au/",
7979
clientId: config.client_id,
8080
authorizationEndpoint: config.authorization_endpoint,
81+
tokenEndpoint: "https://auth.sbhs.net.au/token",
8182
});
8283

8384
const fetchWrapperInjector = () =>

0 commit comments

Comments
 (0)