@wu529778790/open-im 1.11.3-beta.4 → 1.11.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -340,7 +340,7 @@ export async function main() {
|
|
|
340
340
|
log.info(`Successfully initialized platforms: ${successfulPlatforms.join(", ")}`);
|
|
341
341
|
// Send notification only to successfully initialized platforms
|
|
342
342
|
for (const platform of successfulPlatforms) {
|
|
343
|
-
const startupMsg = buildStartupMessage(platform, APP_VERSION, resolvePlatformAiCommand(config, platform),
|
|
343
|
+
const startupMsg = buildStartupMessage(platform, APP_VERSION, resolvePlatformAiCommand(config, platform), config.claudeWorkDir, sessionManager);
|
|
344
344
|
await sendLifecycleNotification(platform, startupMsg).catch((err) => {
|
|
345
345
|
log.warn(`Failed to send startup notification to ${platform}:`, err);
|
|
346
346
|
});
|
package/package.json
CHANGED