Skip to content

Commit

Permalink
Fixed bug that caused setting the picker to manual reset user settings (
Browse files Browse the repository at this point in the history
#1291)

Signed-off-by: Zuiuzz <[email protected]>
  • Loading branch information
Zuiuzz authored Feb 27, 2024
1 parent 6796b88 commit 208dd02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/tc/oc/pgm/db/SettingsImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class SettingsImpl implements Settings {
}

public static long bitSettings(SettingValue value) {
return 1 << (assertNotNull(value, "setting value is null").ordinal() + 1);
return 1L << (assertNotNull(value, "setting value is null").ordinal() + 1);
}

protected final long getBit() {
Expand Down

0 comments on commit 208dd02

Please sign in to comment.