|
@@ -157,7 +157,14 @@ export default {
|
|
|
});
|
|
|
|
|
|
if (this.meetingProp) {
|
|
|
- this.$store.commit("setMeeting", this.meetingProp);
|
|
|
+ let meeting = {
|
|
|
+ uid: this.meetingProp.uid,
|
|
|
+ lobby_uid: this.meetingProp.lobby.uid,
|
|
|
+ name: this.meetingProp.name,
|
|
|
+ active_members: [],
|
|
|
+ pros_online: []
|
|
|
+ }
|
|
|
+ this.$store.commit("setMeeting", meeting);
|
|
|
}
|
|
|
|
|
|
this.$store.commit("setInitialUser", this.userProp);
|