Skip to content

Commit a69a3d0

Browse files
changes regex pattern
1 parent 176046f commit a69a3d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/frontend/src/services/PlanDataService.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ export class PlanDataService {
383383

384384
const facts =
385385
body
386-
.match(/facts="([^"]*(?:\\.[^"]*)*)"/)?.[1]
386+
.match(/facts="((?:[^"\\]|\\.)*)"/)?.[1]
387387
?.replace(/\\n/g, '\n')
388388
.replace(/\\"/g, '"') || '';
389389

src/mcp_server/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies = [
2121
"azure-identity==1.19.0",
2222
"pydantic==2.11.7",
2323
"pydantic-settings==2.6.1",
24-
"python-multipart==0.0.17",
24+
"python-multipart==0.0.18",
2525
"httpx==0.28.1",
2626
]
2727

0 commit comments

Comments
 (0)