projects
/
vchess.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0cc44e5
)
Improve 'connected' display in case of multi-accounts on same browser
author
Benjamin Auder
<benjamin.auder@somewhere>
Fri, 6 Mar 2020 17:06:10 +0000
(18:06 +0100)
committer
Benjamin Auder
<benjamin.auder@somewhere>
Fri, 6 Mar 2020 17:06:10 +0000
(18:06 +0100)
client/src/views/Game.vue
patch
|
blob
|
blame
|
history
diff --git
a/client/src/views/Game.vue
b/client/src/views/Game.vue
index
5c4630b
..
214f819
100644
(file)
--- a/
client/src/views/Game.vue
+++ b/
client/src/views/Game.vue
@@
-232,8
+232,12
@@
export default {
isConnected: function(index) {
const player = this.game.players[index];
// Is it me ?
- if (this.st.user.sid == player.sid || this.st.user.id == player.uid)
+ if (
+ (this.st.user.sid == player.sid || this.st.user.id == player.uid) &&
+ (!this.st.user.name || this.st.user.name == player.name)
+ ) {
return true;
+ }
// Try to find a match in people:
return (
(