From 85936dcaed0499655d07de9cdc1849daf2716464 Mon Sep 17 00:00:00 2001 From: foqc Date: Mon, 7 Jul 2025 17:40:30 -0500 Subject: [PATCH] feature: Correctly map SQL query results by enforcing quoted column aliases (update missing mappings) --- src/api/services/channel.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/services/channel.service.ts b/src/api/services/channel.service.ts index afa1b4f8..d2768c4c 100644 --- a/src/api/services/channel.service.ts +++ b/src/api/services/channel.service.ts @@ -793,8 +793,8 @@ export class ChannelStartupService { remoteJid: contact.remoteJid, pushName: contact.pushName, profilePicUrl: contact.profilePicUrl, - updatedAt: contact.updatedat, - windowStart: contact.windowstart, + updatedAt: contact.updatedAt, + windowStart: contact.windowStart, windowExpires: contact.windowExpires, windowActive: contact.windowActive, lastMessage: lastMessage ? this.cleanMessageData(lastMessage) : undefined,