Skip to content

Commit 85936dc

Browse files
committed
feature: Correctly map SQL query results by enforcing quoted column aliases (update missing mappings)
1 parent 333ef3e commit 85936dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/api/services/channel.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -793,8 +793,8 @@ export class ChannelStartupService {
793793
remoteJid: contact.remoteJid,
794794
pushName: contact.pushName,
795795
profilePicUrl: contact.profilePicUrl,
796-
updatedAt: contact.updatedat,
797-
windowStart: contact.windowstart,
796+
updatedAt: contact.updatedAt,
797+
windowStart: contact.windowStart,
798798
windowExpires: contact.windowExpires,
799799
windowActive: contact.windowActive,
800800
lastMessage: lastMessage ? this.cleanMessageData(lastMessage) : undefined,

0 commit comments

Comments
 (0)