claude-remote-cli 3.3.4 → 3.3.5

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.
@@ -295,7 +295,7 @@ async function fetchMetaForSession(session) {
295
295
  if (branch) {
296
296
  try {
297
297
  const pr = await getPrForBranch(repoPath, branch);
298
- if (pr) {
298
+ if (pr && pr.state === 'OPEN') {
299
299
  prNumber = pr.number;
300
300
  additions = pr.additions;
301
301
  deletions = pr.deletions;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-remote-cli",
3
- "version": "3.3.4",
3
+ "version": "3.3.5",
4
4
  "description": "Remote web interface for Claude Code CLI sessions",
5
5
  "type": "module",
6
6
  "main": "dist/server/index.js",