Skip to content

Commit

Permalink
imp - Apply the integer fix to the main config migration
Browse files Browse the repository at this point in the history
---

The integer fix has been applied to the main kernel config migration routine as well.

---

Type: imp
Breaking: False
Doc Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed May 18, 2024
1 parent f763923 commit c7f33e6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ private static bool MigrateMainKernelConfig()
var value =
key.Type == SettingsKeyType.SChar ? keyValue.Value<string>()[0] :
key.Type == SettingsKeyType.SBoolean ? keyValue.Value<int>() :
key.Type == SettingsKeyType.SInt ? keyValue.Value<int>() :
key.Type == SettingsKeyType.SIntSlider ? keyValue.Value<int>() :
keyValue.Value;

// Now, set the value
Expand Down

0 comments on commit c7f33e6

Please sign in to comment.