don't show self typing

This commit is contained in:
MathMan05
2025-11-29 20:40:27 -06:00
parent 12821c3a3a
commit a3eda98fee

View File

@@ -1847,7 +1847,7 @@ class Channel extends SnowFlake {
let showing = false;
let i = 0;
const curtime = Date.now() - 5000;
for (const thing of this.typingmap.keys()) {
for (const thing of this.typingmap.keys().filter((_) => _.id !== this.localuser.user.id)) {
if ((this.typingmap.get(thing) as number) > curtime) {
if (i !== 0) {
build += ", ";