You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(nextcloud-talk,discord): bound response body reads for webhook and error paths
Bound two unbounded response body reads to prevent potential OOM:
- extensions/nextcloud-talk/src/bot-preflight.ts: error-path
response.text() for Nextcloud API error body was unbounded.
- extensions/discord/src/send.webhook.ts: happy-path response.json()
for Discord webhook send result was unbounded (error path already
used readResponseTextLimited).
These follow the same project-wide bound-response-read pattern.
Co-Authored-By: Claude <noreply@anthropic.com>
0 commit comments