Skip to content

Commit

Permalink
Fixed an Issue when extracting
Browse files Browse the repository at this point in the history
  • Loading branch information
Crauzer committed Oct 23, 2017
2 parents 4359ec5 + 4b46670 commit 8415cb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Obsidian/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ private void buttonExtract_Click(object sender, RoutedEventArgs e)
}
else
{
entryName = Encoding.ASCII.GetString(BitConverter.GetBytes(entry.XXHash));
entryName = BitConverter.ToString(BitConverter.GetBytes(entry.XXHash)).Replace("-", "");
entryName += "." + Utilities.GetEntryExtension(Utilities.GetLeagueFileExtensionType(entryData));
}

Expand Down
2 changes: 1 addition & 1 deletion Obsidian/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.3.0.0")]
[assembly: AssemblyVersion("1.3.0.1")]
[assembly: AssemblyFileVersion("1.0.0.0")]

0 comments on commit 8415cb8

Please sign in to comment.