more optimizations

This commit is contained in:
zefie
2025-08-11 16:16:44 -04:00
parent 6d660f387b
commit c4b8fd03dc
6 changed files with 22 additions and 20 deletions

View File

@@ -827,7 +827,7 @@ class WTVClientSessionData {
hasCap(cap) {
if (this.capabilities) {
return this.capabilities[cap] || false;
return this.capabilities.get(cap) || false;
}
return false;
}