-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 Vimeo link validation. #348
Conversation
The tests were failing because your implmentation broke the URL switching logic when the Vimeo player was already loaded. A numeric video ID was required for loading a new video into an existing player. As of |
It's super weird. Locally tests were passing. Error in Travis Ci occurred in different place in one of the test runs. |
Yeah.. #332 (comment) |
There is an issue, when using player with some of Vimeo links.
Sharing this video https://vimeo.com/249675407 using Vimeo's share button generates link as follows: https://vimeo.com/yannickcerrutti/annecydroneinmotion. Such link isn't treated as Vimeo's, but it should be. I propose simplifying regex - there is no need for such complexity due to of possible variations of links.
I've also spotted corrupted file link which I've replaced with working one so that test would pass again.