codex-review-mcp 2.3.3 → 2.3.4

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.
@@ -85,7 +85,7 @@ server.registerTool('perform_code_review', {
85
85
  const onProgress = async (message, progress, total) => {
86
86
  // Only send progress notifications if we have a valid progress token
87
87
  const progressToken = extra?._meta?.progressToken ?? extra?.requestId;
88
- if (!progressToken) {
88
+ if (progressToken === undefined || progressToken === null) {
89
89
  // Skip progress notifications if no token available
90
90
  return;
91
91
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-review-mcp",
3
- "version": "2.3.3",
3
+ "version": "2.3.4",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build": "tsc",