diff options
author | George Hazan <ghazan@miranda.im> | 2021-05-14 19:57:06 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-05-14 19:57:06 +0300 |
commit | 5fbd862c8498fe8f0f711f9289c763fd5d79bd3b (patch) | |
tree | 819e9edf867aead08023a59da0ab36a05ca64d78 /protocols/Weather/src | |
parent | e899af438b5813235060064ea6a3b651c250e9aa (diff) |
added "partly sunny" (for #2872)
Diffstat (limited to 'protocols/Weather/src')
-rw-r--r-- | protocols/Weather/src/weather_conv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Weather/src/weather_conv.cpp b/protocols/Weather/src/weather_conv.cpp index 880166305d..debbaeab89 100644 --- a/protocols/Weather/src/weather_conv.cpp +++ b/protocols/Weather/src/weather_conv.cpp @@ -327,7 +327,7 @@ WORD GetIcon(const wchar_t *cond, WIDATA *Data) return statusValue[i]; // internal detection - if (wcsstr(cond, L"mainy sunny") || wcsstr(cond, L"mainy clear") || wcsstr(cond, L"partly cloudy") || wcsstr(cond, L"mostly") || wcsstr(cond, L"clouds")) + if (wcsstr(cond, L"mainy sunny") || wcsstr(cond, L"mainy clear") || wcsstr(cond, L"partly sunny") || wcsstr(cond, L"partly cloudy") || wcsstr(cond, L"mostly") || wcsstr(cond, L"clouds")) return PCLOUDY; if (wcsstr(cond, L"sunny") || wcsstr(cond, L"clear") || wcsstr(cond, L"fair")) |