UI: Fix act. feed version hide check to <= 23.0.2

master
jp9000 2019-03-28 16:45:24 -07:00
parent b1f04a47cf
commit eb672d7725
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ void TwitchAuth::LoadSecondaryUIPanes()
uint32_t lastVersion = config_get_int(App()->GlobalConfig(), "General",
"LastVersion");
if (lastVersion < MAKE_SEMANTIC_VERSION(23, 1, 0)) {
if (lastVersion <= MAKE_SEMANTIC_VERSION(23, 0, 2)) {
feed->setVisible(false);
}