Skip to content

Commit

Permalink
修改几处命名错误
Browse files Browse the repository at this point in the history
  • Loading branch information
YangSpring114 committed Jan 23, 2025
1 parent b9e9165 commit 30f22c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion WonderLab/Services/Download/DownloadService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public async Task InstallMinecraftAsync(
};

try {
var mainInstaller = new VanlliaInstaller(_gameService.GameResolver, gameId, dc);
var mainInstaller = new VanillaInstaller(_gameService.GameResolver, gameId, dc);
InstallerBase installer = installEntry is null
? mainInstaller
: installEntry switch {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ private Task OnLoaded() => Task.Run(async () => {
return;
}

var result = await VanlliaInstaller.EnumerableGameCoreAsync(_cancellationTokenSource.Token);
var result = await VanillaInstaller.EnumerableGameCoreAsync(_cancellationTokenSource.Token);
_cacheService.MinecraftList.AddRange(result.ToImmutableList());
MinecraftList = new(_allMinecraftList);
ActiveVersion = VersionType.Release;
Expand Down

0 comments on commit 30f22c9

Please sign in to comment.