Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix uuid generation. uuid is an object, it's uuid.uuid() who's a function #112

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

sand97
Copy link

@sand97 sand97 commented Aug 12, 2022

When you call uuid() it generate and Exception, "...is not a function" in electron production

@@ -320,5 +320,5 @@ function remove(file, cb) {
}

function randomName() {
return path.join(os.tmpdir(), 'videoshow-' + uuid())
return path.join(os.tmpdir(), 'videoshow-' + uuid.uuid())

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we use internal Crypto.randomUUID instead of an external library here?

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.

3 participants