diff --git a/html/src/app.js b/html/src/app.js
index 6f6ecbc3..787e6053 100644
--- a/html/src/app.js
+++ b/html/src/app.js
@@ -991,10 +991,14 @@ speechSynthesis.getVoices();
}
},
showGroupDialog() {
- if (!this.location || !this.link) {
+ var location = this.location;
+ if (this.isTraveling) {
+ location = this.traveling;
+ }
+ if (!location || !this.link) {
return;
}
- var L = API.parseLocation(this.location);
+ var L = API.parseLocation(location);
if (!L.groupId) {
return;
}