소스 검색

Merge pull request #443 from mnaamani/fix/thread-id

revert forum type ThreadId to u64
Mokhtar Naamani 4 년 전
부모
커밋
92d37e2ac7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/joy-types/src/forum.ts

+ 1 - 1
packages/joy-types/src/forum.ts

@@ -90,7 +90,7 @@ export class CategoryId extends u64 {}
 export class OptionCategoryId extends Option.with(CategoryId) {}
 export class VecCategoryId extends Vector.with(CategoryId) {}
 
-export class ThreadId extends u32 {}
+export class ThreadId extends u64 {}
 export class VecThreadId extends Vector.with(ThreadId) {}
 
 export class PostId extends u64 {}