mirror of
https://github.com/lubosz/overte.git
synced 2025-04-19 17:03:43 +02:00
make bank link testable in staging
This commit is contained in:
parent
300f611c47
commit
8b46bdd9a1
1 changed files with 5 additions and 1 deletions
|
@ -689,7 +689,11 @@
|
|||
sendMoneyParticleEffectUpdateTimer = Script.setInterval(updateSendMoneyParticleEffect, SEND_MONEY_PARTICLE_TIMER_UPDATE);
|
||||
break;
|
||||
case 'transactionHistory_goToBank':
|
||||
Window.location = "hifi://BankOfHighFidelity";
|
||||
if (Account.metaverseServerURL.indexOf("staging") >= 0) {
|
||||
Window.location = "hifi://hifiqa-master-metaverse-staging"; // So that we can test in staging.
|
||||
} else {
|
||||
Window.location = "hifi://BankOfHighFidelity";
|
||||
}
|
||||
break;
|
||||
default:
|
||||
print('Unrecognized message from QML:', JSON.stringify(message));
|
||||
|
|
Loading…
Reference in a new issue