We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9eae16 commit 86c6f61Copy full SHA for 86c6f61
examples/browser/wallet-iframe/src/App.vue
@@ -84,7 +84,9 @@ export default {
84
}),
85
methods: {
86
navigate() {
87
- if (!/^https?:\/\//.test(this.nextAeppUrl)) this.nextAeppUrl = 'http://' + this.nextAeppUrl;
+ if (!/^https?:\/\//.test(this.nextAeppUrl) && !this.nextAeppUrl.startsWith('.')) {
88
+ this.nextAeppUrl = 'http://' + this.nextAeppUrl;
89
+ }
90
this.aeppUrl = '';
91
this.$nextTick(() => {
92
this.aeppUrl = this.nextAeppUrl;
0 commit comments