fix: chat scroll (NDK bugs)

This commit is contained in:
2025-05-13 14:04:35 +01:00
parent efd95837ea
commit 0b83881a3d
3 changed files with 20 additions and 10 deletions

View File

@ -77,7 +77,7 @@ class _RxFilter<T> extends State<RxFilter<T>> {
if ([0, 3].contains(ev.kind) || (ev.kind >= 10000 && ev.kind < 20000)) {
return "${ev.kind}:${ev.pubKey}";
} else if (ev.kind >= 30000 && ev.kind < 40000) {
return "${ev.kind}:${ev.pubKey}:${ev.getDtag()!}";
return "${ev.kind}:${ev.pubKey}:${ev.getDtag()}";
} else {
return ev.id;
}