File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lambdas/account-scoped/src/conversation Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ const deleteClosedConversationEventHandler: ServiceScopedConversationEventHandle
4141 const serviceConfigAttributes = await retrieveServiceConfigurationAttributes ( client ) ;
4242
4343 const zeroTranscriptRetention = Boolean (
44- serviceConfigAttributes . enforceZeroTranscriptRetention || 'false' ,
44+ serviceConfigAttributes . enforceZeroTranscriptRetention ,
4545 ) ;
4646 if ( zeroTranscriptRetention && stateTo === 'closed' ) {
4747 console . debug (
@@ -70,7 +70,7 @@ const deleteInactiveChatChannelEventHandler: ServiceScopedConversationEventHandl
7070 const serviceConfigAttributes = await retrieveServiceConfigurationAttributes ( client ) ;
7171
7272 const zeroTranscriptRetention = Boolean (
73- serviceConfigAttributes . enforceZeroTranscriptRetention || 'false' ,
73+ serviceConfigAttributes . enforceZeroTranscriptRetention ,
7474 ) ;
7575 if ( zeroTranscriptRetention ) {
7676 const { status } = JSON . parse ( attributesJson || '{}' ) ;
You can’t perform that action at this time.
0 commit comments