Skip to content

Commit 7cc32f3

Browse files
committed
Fix build issue
1 parent 397c6ee commit 7cc32f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Flow.Launcher/App.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,17 +165,17 @@ private void AutoStartup()
165165
{
166166
// we try to enable auto-startup on first launch, or reenable if it was removed
167167
// but the user still has the setting set
168-
if (_settings.StartFlowLauncherOnSystemStartup && !Infrastructure.AutoStartup.IsEnabled)
168+
if (_settings.StartFlowLauncherOnSystemStartup && !Helper.AutoStartup.IsEnabled)
169169
{
170170
try
171171
{
172172
if (_settings.UseLogonTaskForStartup)
173173
{
174-
Infrastructure.AutoStartup.EnableViaLogonTask();
174+
Helper.AutoStartup.EnableViaLogonTask();
175175
}
176176
else
177177
{
178-
Infrastructure.AutoStartup.EnableViaRegistry();
178+
Helper.AutoStartup.EnableViaRegistry();
179179
}
180180
}
181181
catch (Exception e)

0 commit comments

Comments
 (0)