fix(youtube/theme): set correct default seekbar color

This commit is contained in:
oSumAtrIX 2023-05-02 05:35:54 +02:00
parent e34e75133c
commit a91b0363a8
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -9,7 +9,7 @@ public final class ThemePatch {
private static void resetSeekbarColor() {
ReVancedUtils.showToastShort("Invalid seekbar color value. Using default value.");
SettingsEnum.SEEKBAR_COLOR.saveValue(Integer.toHexString(DEFAULT_SEEKBAR_COLOR));
SettingsEnum.SEEKBAR_COLOR.saveValue("#" + Integer.toHexString(DEFAULT_SEEKBAR_COLOR));
}
public static int getSeekbarColorValue() {