mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 21:17:01 +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);
|
sendMoneyParticleEffectUpdateTimer = Script.setInterval(updateSendMoneyParticleEffect, SEND_MONEY_PARTICLE_TIMER_UPDATE);
|
||||||
break;
|
break;
|
||||||
case 'transactionHistory_goToBank':
|
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;
|
break;
|
||||||
default:
|
default:
|
||||||
print('Unrecognized message from QML:', JSON.stringify(message));
|
print('Unrecognized message from QML:', JSON.stringify(message));
|
||||||
|
|
Loading…
Reference in a new issue