|
@@ -230,7 +230,7 @@ export default {
|
|
|
|
|
|
this.$socket.emit("userData", {
|
|
|
user: {
|
|
|
- uid: "someuid",
|
|
|
+ uid: this.clientUid,
|
|
|
name: `${this.firstName} ${this.lastName}`,
|
|
|
type: "STRANGER"
|
|
|
},
|
|
@@ -326,7 +326,7 @@ export default {
|
|
|
user: {
|
|
|
name: `${this.firstName} ${this.lastName}`,
|
|
|
type: 'STRANGER',
|
|
|
- uid: 'someuid' //TODO:
|
|
|
+ uid: this.clientUid
|
|
|
}
|
|
|
})
|
|
|
})
|
|
@@ -642,7 +642,7 @@ export default {
|
|
|
|
|
|
this.$socket.emit("userData", {
|
|
|
user: {
|
|
|
- uid: "someuid",
|
|
|
+ uid: this.clientUid,
|
|
|
name: `${this.firstName} ${this.lastName}`,
|
|
|
type: "STRANGER"
|
|
|
},
|