Fabric icon indicating copy to clipboard operation
Fabric copied to clipboard

[Bug]: yt only works with youtu.be/xyz, not youtube.com/watch?v=xyz.

Open zoneandonly opened this issue 1 year ago • 2 comments

What happened?

This works: https://youtu.be/lEXd6TXPw7E This doesn't: https://www.youtube.com/watch?v=lEXd6TXPw7E Tried escaping, no joy.

Version check

  • [X] Yes I was.

Relevant log output

zsh: no matches found: https://www.youtube.com/watch?v=lEXd6TXPw7E

Relevant screenshots (optional)

No response

zoneandonly avatar Jun 04 '24 15:06 zoneandonly

It's a zsh issue. It trips over the ? character. You need to add single or double quotes around the URL, or just escape the ? with a
e.g. https://www.youtube.com/watch?v=lEXd6TXPw7E or 'https://www.youtube.com/watch?v=lEXd6TXPw7E'

TheBrinkOfTomorrow avatar Jun 04 '24 23:06 TheBrinkOfTomorrow

Thanks for your response. I tried single and double quotes to no avail. Docs show the use of URL with ? but without quotes. If memory serves, it used to work without quotes.

zoneandonly avatar Jun 12 '24 02:06 zoneandonly