Skip to content

Commit

Permalink
fix: temporarily, use .zone instead of .org to be able to connect wit…
Browse files Browse the repository at this point in the history
…h the WebSocket with the new security measures (#27)
  • Loading branch information
kuruk-mm authored Jan 3, 2022
1 parent 6734cdb commit 8eb631d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electron/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const loadDecentralandWeb = async (win: BrowserWindow) => {
showLoading(win);

const port = await getFreePort()
const stage = config.developerMode ? 'zone' : 'org'
const stage = 'zone' //config.developerMode ? 'zone' : 'org' // Temporal until we figure out how to use ws=ws://localhost:5000/dcl with .org and the new security measures
let url = `http://play.decentraland.${stage}/?`

if (config.customUrl) {
Expand Down

0 comments on commit 8eb631d

Please sign in to comment.