Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
heftymouse committed May 15, 2024
1 parent b5708f2 commit 8a4e055
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Files.App/Helpers/Application/AppLifecycleHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public static IHost ConfigureHost()
#if STABLE || PREVIEW
.AddSingleton<IUpdateService, SideloadUpdateService>()
#elif STORE
.AddSingleton<IUpdateService, UpdateService>()
.AddSingleton<IUpdateService, StoreUpdateService>()
#else
.AddSingleton<IUpdateService, DummyUpdateService>()
#endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace Files.App.Services
{
internal sealed class UpdateService : ObservableObject, IUpdateService
internal sealed class StoreUpdateService : ObservableObject, IUpdateService
{
private StoreContext? _storeContext;
private List<StorePackageUpdate>? _updatePackages;
Expand Down Expand Up @@ -46,7 +46,7 @@ public bool IsAppUpdated
get => SystemInformation.Instance.IsAppUpdated;
}

public UpdateService()
public StoreUpdateService()
{
_updatePackages = [];
}
Expand Down

0 comments on commit 8a4e055

Please sign in to comment.