deno support #52
No reviewers
Labels
No labels
bug
dependencies
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
rfc
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: teidesu/mtcute#52
Loading…
Reference in a new issue
No description provided.
Delete branch "deno"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Codecov Report
Attention: Patch coverage is
3.12057%
with683 lines
in your changes are missing coverage. Please review.Additional details and impacted files
☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.
@ -0,0 +24,4 @@
let username = tg1User!.username
if (!username) {
username = `mtcute_e2e_${Math.random().toString(36).slice(2)}`
Insecure randomness
This uses a cryptographically insecure random number generated at Math.random() in a security context.
Show more details
@ -0,0 +50,4 @@
let username = me.username
if (!username) {
username = `mtcute_e2e_${Math.random().toString(36).slice(2, 8)}`
Insecure randomness
This uses a cryptographically insecure random number generated at Math.random() in a security context.
Show more details