fix: pass mediaType and blobUrl props to BlossomViewer

The --type flag for blossom blob command was being parsed correctly but
the mediaType and blobUrl props were not forwarded from WindowRenderer
to BlossomViewer, causing the preview to always show "preview not available".

https://claude.ai/code/session_018edX9kUcEudJzwuFCGh1xf
This commit is contained in:
Claude
2026-01-30 16:38:42 +00:00
parent eca21d3191
commit 45074c54b4

View File

@@ -230,6 +230,8 @@ export function WindowRenderer({ window, onClose }: WindowRendererProps) {
sourceUrl={window.props.sourceUrl}
targetServer={window.props.targetServer}
sha256={window.props.sha256}
blobUrl={window.props.blobUrl}
mediaType={window.props.mediaType}
/>
);
break;