Skip to content
This repository was archived by the owner on Jan 21, 2018. It is now read-only.

Commit

Permalink
FIX: Fix updater
Browse files Browse the repository at this point in the history
  • Loading branch information
bunkerskyi committed Jul 25, 2016
1 parent b1c7fab commit 8a3fa32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/KryBot.Core/Updater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static async Task<Log> Update()
{
DeleteTempFiles();
var release = await GetGitHubRelease();
var binaryAsset = release.Assets.FirstOrDefault(asset => asset.Name == FilePaths.KryBot);
var binaryAsset = release.Assets.FirstOrDefault(asset => asset.Name == FilePaths.KryBotArchive);
if (binaryAsset == null)
{
return new Log(strings.Updater_Update_UpdateFailed, Color.Red, false);
Expand Down

0 comments on commit 8a3fa32

Please sign in to comment.