diff options
author | dartraiden <wowemuh@gmail.com> | 2023-06-20 19:32:41 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2023-06-20 19:37:25 +0300 |
commit | 4b57a291f3d2ea2168666d3906a7c1780eef49e1 (patch) | |
tree | ce78ed69da07d5d808e6ef9b7803653c1c40d808 /src | |
parent | 1c3bbb283ca5f0d25658e190c4c41a4667f71ff2 (diff) |
Fix Food Network search
Diffstat (limited to 'src')
-rw-r--r-- | src/mir_app/src/srmm_log_rtf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/srmm_log_rtf.cpp b/src/mir_app/src/srmm_log_rtf.cpp index b77d94ee69..18a4130482 100644 --- a/src/mir_app/src/srmm_log_rtf.cpp +++ b/src/mir_app/src/srmm_log_rtf.cpp @@ -554,7 +554,7 @@ INT_PTR CRtfLogWindow::WndProc(UINT msg, WPARAM wParam, LPARAM lParam) szURL.Format(L"http://search.yahoo.com/search?p=%s&ei=UTF-8", pszWord);
break;
case IDM_SEARCH_FOODNETWORK:
- szURL.Format(L"http://search.foodnetwork.com/search/delegate.do?fnSearchString=%s", pszWord);
+ szURL.Format(L"http://www.foodnetwork.com/search/%s-", pszWord);
break;
case IDM_SEARCH_BING:
szURL.Format(L"http://www.bing.com/search?q=%s&form=OSDSRC", pszWord);
|