diff --git a/FModel/ViewModels/ApplicationViewModel.cs b/FModel/ViewModels/ApplicationViewModel.cs index 9c53851c..307f43b1 100644 --- a/FModel/ViewModels/ApplicationViewModel.cs +++ b/FModel/ViewModels/ApplicationViewModel.cs @@ -153,10 +153,10 @@ namespace FModel.ViewModels public async Task InitVgmStream() { - var vgmZipFilePath = Path.Combine(UserSettings.Default.OutputDirectory, ".data", "test.zip"); + var vgmZipFilePath = Path.Combine(UserSettings.Default.OutputDirectory, ".data", "vgmstream-win.zip"); if (File.Exists(vgmZipFilePath)) return; - await ApplicationService.ApiEndpointView.BenbotApi.DownloadFileAsync("https://github.com/vgmstream/vgmstream/releases/latest/download/test.zip", vgmZipFilePath); + await ApplicationService.ApiEndpointView.BenbotApi.DownloadFileAsync("https://github.com/vgmstream/vgmstream/releases/latest/download/vgmstream-win.zip", vgmZipFilePath); if (new FileInfo(vgmZipFilePath).Length > 0) { var zip = ZipFile.Read(vgmZipFilePath); @@ -170,4 +170,4 @@ namespace FModel.ViewModels } } } -} \ No newline at end of file +}