fix bug where profile can be replaced by anyone in the CCN
This commit is contained in:
parent
7dbb4a522f
commit
4bd0839669
1 changed files with 1 additions and 1 deletions
2
utils.ts
2
utils.ts
|
@ -84,7 +84,7 @@ export function isRegularEvent(kind: number): boolean {
|
|||
}
|
||||
|
||||
export function isCCNReplaceableEvent(kind: number): boolean {
|
||||
return (kind >= 60000 && kind < 65536) || kind === 0;
|
||||
return (kind >= 60000 && kind < 65536);
|
||||
}
|
||||
|
||||
export function parseATagQuery(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue