Merge pull request #267 from buccella/bug/266-base_url_oxen_observer

Update baseUrl to use oxen.observer instead of lokiblocks.com
This commit is contained in:
kylezs 2021-03-29 14:39:56 +11:00 committed by GitHub
commit 207dce05cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -294,8 +294,8 @@ export class Backend {
if (path) {
const baseUrl =
net_type === "testnet"
? "https://lokitestnet.com"
: "https://lokiblocks.com";
? "https://testnet.oxen.observer"
: "https://oxen.observer";
const url = `${baseUrl}/${path}/`;
require("electron").shell.openExternal(url + params.id);
}