Skip to content

Commit

Permalink
При работе встроенного парсера Youtube в истории сохранялась ссылка н…
Browse files Browse the repository at this point in the history
…а сам поток а не сама ссылка на ролик, исправлено.
  • Loading branch information
Aleksoid1978 committed Feb 19, 2024
1 parent 49b7638 commit 0496637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/mplayerc/MainFrm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12202,7 +12202,7 @@ CString CMainFrame::OpenFile(OpenFileData* pOFD)
m_wndPlaylistBar.SetCurLabel(m_youtubeFields.title);
}
else if (s.bYoutubePageParser && pOFD->auds.empty()) {
auto& url = pOFD->fi.GetPath();
auto url = pOFD->fi.GetPath();
bool ok = Youtube::CheckURL(url);
if (ok) {
ok = Youtube::Parse_URL(
Expand Down

0 comments on commit 0496637

Please sign in to comment.