Merge pull request #2386 from thelounge/xpaw/quits-parts
Count quits as parts in condensed messages to reduce information density
This commit is contained in:
commit
4ff5995617
@ -22,6 +22,11 @@ function updateText(condensed, addedTypes) {
|
||||
const obj = getStoredTypes(condensed);
|
||||
|
||||
Object.keys(addedTypes).map((type) => {
|
||||
// Count quits as parts in condensed messages to reduce information density
|
||||
if (type === "quit") {
|
||||
type = "part";
|
||||
}
|
||||
|
||||
obj[type] += addedTypes[type];
|
||||
condensed.data(type, obj[type]);
|
||||
});
|
||||
@ -45,9 +50,6 @@ function updateText(condensed, addedTypes) {
|
||||
case "part":
|
||||
strings.push(obj[type] + (obj[type] > 1 ? " users have left" : " user has left"));
|
||||
break;
|
||||
case "quit":
|
||||
strings.push(obj[type] + (obj[type] > 1 ? " users have quit" : " user has quit"));
|
||||
break;
|
||||
case "nick":
|
||||
strings.push(obj[type] + (obj[type] > 1 ? " users have changed nick" : " user has changed nick"));
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user