Skip to content

fix(app): fallback blob ID generation for non-secure HTTP contexts - #41710

Open
jibin7jose wants to merge 1 commit into
anomalyco:devfrom
jibin7jose:fix-image-paste
Open

fix(app): fallback blob ID generation for non-secure HTTP contexts#41710
jibin7jose wants to merge 1 commit into
anomalyco:devfrom
jibin7jose:fix-image-paste

Conversation

@jibin7jose

Copy link
Copy Markdown

Issue for this PR

Closes #41706

Type of change

  • Bug fix
  • New feature
  • Refactor / code improvement
  • Documentation

What does this PR do?

Fixes an issue where pasting an image in a non-secure HTTP context (e.g. over a remote server IP) causes a crash. The blobID function was using crypto.subtle.digest, but the Web Crypto API spec makes crypto.subtle undefined in non-secure contexts.

This PR updates blobID to check if globalThis.crypto?.subtle is available. If it's not, it falls back to a non-cryptographic random string for the ID, allowing images to paste normally.

How did you verify your code works?

Verified that the globalThis.crypto?.subtle check successfully prevents the TypeError and falls back correctly when accessed over plain HTTP.

Screenshots / recordings

Checklist

  • I have tested my changes locally
  • I have not included unrelated changes in this PR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Web UI: pasting images fails with Cannot read properties of undefined (reading 'digest') when accessing via HTTP on non-localhost

1 participant