Skip to content

Commit 74ef533

Browse files
authored
Merge pull request #692 from EdgeApp/sam/change-servers
Add change2.edge.app to default change servers list
2 parents 860408d + a526a7f commit 74ef533

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- added: Added `change2.edge.app` server to default change server list.
6+
57
## 2.38.2 (2025-12-22)
68

79
- fixed: Recover WIP login stashes if login-server network requests fails.

src/core/root.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,10 @@ export async function makeContext(
5555
'https://login1.edge.app',
5656
'https://login2.edge.app'
5757
])
58-
const changeServers = toServerArray(changeServer, ['wss://change1.edge.app'])
58+
const changeServers = toServerArray(changeServer, [
59+
'wss://change1.edge.app',
60+
'wss://change2.edge.app'
61+
])
5962
const infoServers = toServerArray(infoServer, [
6063
'https://info1.edge.app',
6164
'https://info2.edge.app'

0 commit comments

Comments
 (0)