-
Notifications
You must be signed in to change notification settings - Fork 495
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 don't show title in recent files list may not work because title have special chars. #1035
base: develop
Are you sure you want to change the base?
Conversation
…have special chars.
Hi, |
They are same if |
Isn't possible instead of regex and all this code convert to std::u32string and use std::u32string::find? |
This is not necessary. CStringW use UTF-16. |
Then about std::u16string::find? |
|
I see title and filename equal in MPC-HC. If yes, then there is an additional bug in ffmpeg or youtube-dl because these characters shouldn't be muxed in the file. |
It already shows only filename here. What does this change? |
When title include some chars which can not used in file name. (Such as /.) Some downloader such as youtube-dl will replace it to _. |
The example file download with YouTube-DL. |
fix this.