Skip to content

Commit

Permalink
Change how own latency is received
Browse files Browse the repository at this point in the history
  • Loading branch information
LucHeart committed Apr 10, 2024
1 parent 5cf388e commit 38fec74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/views/dashboard/shockers/own/Device.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
};
Expand Down
2 changes: 1 addition & 1 deletion src/views/dashboard/shockers/shared/SharedDevice.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
};
Expand Down

0 comments on commit 38fec74

Please sign in to comment.