instar 0.24.21 → 0.24.23

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.
@@ -3146,7 +3146,7 @@
3146
3146
 
3147
3147
  el.innerHTML = `
3148
3148
  <div class="session-name-row">
3149
- <div class="session-name">${escapeHtml(session.name)}</div>
3149
+ <div class="session-name">${escapeHtml(session.platformName || session.name)}</div>
3150
3150
  <button class="session-close-btn" data-tmux="${escapeHtml(session.tmuxSession)}" data-name="${escapeHtml(session.name)}" onclick="event.stopPropagation();closeSession(this.dataset.tmux,this.dataset.name)" title="Close session">&times;</button>
3151
3151
  </div>
3152
3152
  <div class="session-meta">
@@ -2273,7 +2273,7 @@ export async function startServer(options) {
2273
2273
  // Write to a temp file and send via tmux to avoid escaping issues
2274
2274
  const msgFile = path.join(tmpDir, `inject-${Date.now()}.txt`);
2275
2275
  fs.writeFileSync(msgFile, bootstrapMessage);
2276
- execSync(`tmux send-keys -t '=${existingSession}' "$(cat '${msgFile}')" Enter`, { timeout: 5000 });
2276
+ execSync(`tmux send-keys -t '=${existingSession}:' "$(cat '${msgFile}')" Enter`, { timeout: 5000 });
2277
2277
  fs.unlinkSync(msgFile);
2278
2278
  }
2279
2279
  catch (injectErr) {