fix(server): allow blob attachments in web UI - #40692
Merged
Merged
Conversation
Hona
enabled auto-merge (squash)
August 5, 2026 22:02
DevFlex-AI
added a commit
to bolt-builder/bolt-cli
that referenced
this pull request
Aug 5, 2026
fix(server): allow blob attachments in web UI (anomalyco#40692)
charlesverge
pushed a commit
to charlesverge/opencode
that referenced
this pull request
Aug 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue for this PR
Closes #40691
Type of change
What does this PR do?
Allows
blob:URLs in the web UI'simg-srcandconnect-srcContent Security Policy directives.OpenCode 1.18.13 changed attachments to use blob-backed draft storage in #40207. Attachment previews load the object URL as an image, while submission fetches the object URL before converting it into a data URL.
The server CSP allowed
data:URLs but notblob:URLs, so browsers blocked both operations withblocked:csp.This keeps the change limited to the two directives used by the attachment flow and adds regression assertions for both allowances.
How did you verify your code works?
cd packages/opencode && bun test test/server/httpapi-ui.test.tscd packages/opencode && bun typecheckcd packages/opencode && OPENCODE_CHANNEL=latest OPENCODE_VERSION=1.18.13 bun run build --single --skip-installgit diff --checkScreenshots / recordings
N/A
Checklist