diff --git a/src/views/dashboard/shockers/own/Device.vue b/src/views/dashboard/shockers/own/Device.vue index 1116293..eb832f9 100644 --- a/src/views/dashboard/shockers/own/Device.vue +++ b/src/views/dashboard/shockers/own/Device.vue @@ -131,7 +131,7 @@ export default { break; case "LatencyAnnounce": - this.live.latency = json.Data[this.$store.state.user.id]; + this.live.latency = json.Data.ownLatency; break; } }; diff --git a/src/views/dashboard/shockers/shared/SharedDevice.vue b/src/views/dashboard/shockers/shared/SharedDevice.vue index 4e23a64..ca755c5 100644 --- a/src/views/dashboard/shockers/shared/SharedDevice.vue +++ b/src/views/dashboard/shockers/shared/SharedDevice.vue @@ -132,7 +132,7 @@ export default { break; case "LatencyAnnounce": - this.live.latency = json.Data[this.$store.state.user.id]; + this.live.latency = json.Data.OwnLatency; break; } };