fix(youtube/theme): return correct color value (#202)

This commit is contained in:
OxrxL
2022-11-13 04:46:57 +01:00
committed by GitHub
parent 9e5e81875a
commit f8cb38e57a

View File

@ -24,7 +24,7 @@ public class LithoThemePatch {
var isDarkTheme = ThemeHelper.isDarkTheme();
if ((isDarkTheme && anyEquals(originalValue, DARKCONSTANTS)) || (!isDarkTheme && anyEquals(originalValue, WHITECONSTANTS)))
return 0;
return -16777215;
return originalValue;
}