fix(youtube/theme): revert comment box background color hook (#210)

This reverts commit f8cb38e57a.
This commit is contained in:
oSumAtrIX
2022-11-14 16:10:15 +01:00
committed by GitHub
parent 06c5a9b2b8
commit 197f0034a1

View File

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