File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,8 +36,10 @@ export class MemoryStore<ConversationState = any> implements ConversationStore<C
3636 // release the memory
3737 this . state . delete ( conversationId ) ;
3838 reject ( new Error ( 'Conversation expired' ) ) ;
39+ return ;
3940 }
4041 resolve ( entry . value ) ;
42+ return ;
4143 }
4244 reject ( new Error ( 'Conversation not found' ) ) ;
4345 } ) ;
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ export class ContextMissingPropertyError extends Error implements CodedError {
106106}
107107
108108export class InvalidCustomPropertyError extends Error implements CodedError {
109- public code = ErrorCode . AppInitializationError ;
109+ public code = ErrorCode . InvalidCustomPropertyError ;
110110}
111111
112112export class CustomRouteInitializationError extends Error implements CodedError {
You can’t perform that action at this time.
0 commit comments