A various number of fixes related to ensuring message content is captured, and adding downloading of attachments

This commit is contained in:
2025-12-21 19:12:16 -05:00
parent 4329fe30d7
commit 6e93022cb3
12 changed files with 69 additions and 17 deletions

View File

@@ -5,7 +5,7 @@ import { DBCall } from "./DBCall";
@Entity()
export class DBChannel {
@PrimaryColumn({type: "bigint"})
@PrimaryColumn({type: "text"})
channel_snowflake: string
@ManyToOne(() => DBServer, (server: DBServer) => server.channels, {nullable: true})