chore: fix handling of ongoing room kind incorrectly (#136)

This commit is contained in:
reya
2025-09-01 19:44:23 +07:00
committed by GitHub
parent a1df66e176
commit 5a36354cc8

View File

@@ -295,8 +295,9 @@ impl Registry {
continue;
}
// Get all public keys from the event
let public_keys = event.all_pubkeys();
// Get all public keys from the event's tags
let mut public_keys = event.all_pubkeys();
public_keys.retain(|pk| pk != &public_key);
// Bypass screening flag
let mut bypass = false;