File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -297,8 +297,7 @@ export function registerMSTeamsHandlers<T extends MSTeamsActivityHandler>(
297297 const exactSessionKey = baseSessionKey ;
298298
299299 // Import listSessionEntries dynamically to avoid circular dependencies
300- const { listSessionEntries } =
301- await import ( "openclaw/plugin-sdk/session-store-runtime.js" ) ;
300+ const { listSessionEntries } = await import ( "openclaw/plugin-sdk/session-store-runtime" ) ;
302301
303302 for ( const { sessionKey, entry } of listSessionEntries ( { storePath } ) ) {
304303 // Match either exact key or keys with additional qualifiers (like thread IDs)
@@ -403,7 +402,7 @@ export function registerMSTeamsHandlers<T extends MSTeamsActivityHandler>(
403402 const sessionKeyPrefix = `${ baseSessionKey } :` ;
404403 const exactSessionKey = baseSessionKey ;
405404
406- const { listSessionEntries } = await import ( "openclaw/plugin-sdk/session-store-runtime.js " ) ;
405+ const { listSessionEntries } = await import ( "openclaw/plugin-sdk/session-store-runtime" ) ;
407406
408407 for ( const { sessionKey, entry } of listSessionEntries ( { storePath } ) ) {
409408 if ( sessionKey === exactSessionKey || sessionKey . startsWith ( sessionKeyPrefix ) ) {
You can’t perform that action at this time.
0 commit comments