sdfx icon indicating copy to clipboard operation
sdfx copied to clipboard

crypto.randomUUID() will fail, if SDFX launched not on localhost.

Open morgan55555 opened this issue 10 months ago • 0 comments

PromptTimeline.vue is using crypto.randomUUID() for uuid generation. Using crypto.randomUUID() work on https-sites, but cannot be used on http-sites (except localhost), because crypto is undefined there. It's better to use uuidv4() from 'uuid' package (which already used by this project).

morgan55555 avatar Apr 23 '24 06:04 morgan55555