whoops, fix embarassing bugs where profiles could be edited by everyone
This commit is contained in:
parent
65c34e6811
commit
dacf95505e
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 {
|
export function isCCNReplaceableEvent(kind: number): boolean {
|
||||||
return (kind >= 60000 && kind < 65536) || kind === 0;
|
return (kind >= 60000 && kind < 65536);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function parseATagQuery(
|
export function parseATagQuery(
|
||||||
|
|
Loading…
Add table
Reference in a new issue