UI: Hide act. feed by default if prev ver below 23.1

This commit is contained in:
jp9000 2019-03-28 16:35:46 -07:00
parent a4f602b15a
commit 81354a9903

View File

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