mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 02:24:58 +02:00
Fix merge errors
This commit is contained in:
parent
e26d347682
commit
d3700fc922
1 changed files with 3 additions and 2 deletions
|
@ -212,14 +212,14 @@ Item {
|
|||
datum[styleData.role] = model[styleData.role] = newValue
|
||||
if (styleData.role === "personalMute") {
|
||||
Users[styleData.role](model.sessionId, newValue)
|
||||
} else if (styleData.role === 'ignore') {
|
||||
} else if (styleData.role === "ignore") {
|
||||
var key = styleData.role;
|
||||
if (!newValue) {
|
||||
key = 'un' + key;
|
||||
}
|
||||
if (newValue) {
|
||||
ignored[datum.sessionId] = datum;
|
||||
console.log('fixme hrs adding to ignored', JSON.stringify(datum), 'at', datum.sessionId);
|
||||
console.log("fixme hrs adding to ignored", JSON.stringify(datum), "at", datum.sessionId);
|
||||
} else {
|
||||
delete ignored[datum.sessionId];
|
||||
}
|
||||
|
@ -232,6 +232,7 @@ Item {
|
|||
sortModel()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// Refresh button
|
||||
|
|
Loading…
Reference in a new issue