Skip to content

Commit

Permalink
Bugfix: Repair close on log generated when save log on launch.
Browse files Browse the repository at this point in the history
  • Loading branch information
notsigma committed Jan 19, 2021
1 parent 2592d0d commit 16e998c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion NWNLogRotator.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,8 @@ private async void IterateNWN_Watcher(bool PreviousStatus)
}
else
{
Process.GetCurrentProcess().Kill();
if(_settings.CloseOnLogGenerated == true )
Process.GetCurrentProcess().Kill();
}

}
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,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("0.0.8.4")]
[assembly: AssemblyFileVersion("0.0.8.4")]
[assembly: AssemblyVersion("0.0.8.5")]
[assembly: AssemblyFileVersion("0.0.8.5")]

0 comments on commit 16e998c

Please sign in to comment.