Skip to content

Commit df5a48f

Browse files
committed
Fix an issue with loading user settings.
1 parent 8ff442e commit df5a48f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ArduinoTwitchBot.UI/UserSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public static void LoadUserSettings()
8686
// Load alert settings.
8787
Alerts = new Alert[6]
8888
{
89-
new Alert(bool.Parse(Properties.Settings.Default["FollowerAlert"].ToString()), Properties.Settings.Default["FollowerAlertValue"].ToString(), (SignalType)Enum.Parse(typeof(SignalType),Properties.Settings.Default["FollowerAlertType"].ToString())),
89+
new Alert(bool.Parse(Properties.Settings.Default["FollowAlert"].ToString()), Properties.Settings.Default["FollowAlertValue"].ToString(), (SignalType)Enum.Parse(typeof(SignalType),Properties.Settings.Default["FollowAlertType"].ToString())),
9090

9191
new Alert(bool.Parse(Properties.Settings.Default["SubAlert"].ToString()), Properties.Settings.Default["SubAlertValue"].ToString(), (SignalType)Enum.Parse(typeof(SignalType),Properties.Settings.Default["SubAlertType"].ToString())),
9292

0 commit comments

Comments
 (0)