Skip to content

Commit

Permalink
Fix missing include
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePBone committed Oct 14, 2020
1 parent 8c3707c commit e71c4ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Galaxy Buds Client/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ public partial class App : Application

public App()
{
if (Settings.Default.UpdateSettings)
if (Galaxy_Buds_Client.Properties.Settings.Default.UpdateSettings)
{
Settings.Default.Upgrade();
Settings.Default.UpdateSettings = false;
Settings.Default.Save();
Galaxy_Buds_Client.Properties.Settings.Default.Upgrade();
Galaxy_Buds_Client.Properties.Settings.Default.UpdateSettings = false;
Galaxy_Buds_Client.Properties.Settings.Default.Save();
}

SentrySdk.Init(o =>
Expand Down

0 comments on commit e71c4ab

Please sign in to comment.