-
Notifications
You must be signed in to change notification settings - Fork 426
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: add tests for data uri, fix data uri in demo page #1133
Conversation
@@ -400,7 +400,7 @@ | |||
} | |||
|
|||
if (source.src) { | |||
stateEls.url.value = source.src; | |||
stateEls.url.value = encodeURI(source.src); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
without this data-uri's break the demo on reload.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, can be a chore:
Codecov Report
@@ Coverage Diff @@
## main #1133 +/- ##
==========================================
- Coverage 86.25% 86.22% -0.04%
==========================================
Files 39 39
Lines 9289 9289
Branches 2127 2127
==========================================
- Hits 8012 8009 -3
- Misses 1277 1280 +3
Continue to review full report at Codecov.
|
I see, vhs-utils fix will go here, cool |
Description
Adds tests for, and as soon as we get a vhs-utils update, fixes data-uri type urls.