Skip to content

Commit

Permalink
Fixed bug with remove dialog and incremented version
Browse files Browse the repository at this point in the history
  • Loading branch information
IngvarX committed Jun 9, 2020
1 parent 0344600 commit a194065
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ private async Task RemoveAsync()

var navigationParameter = new NodesRemovingNavigationParameter(filesToRemove, false);
var result = await ShowRemoveConfirmationDialogAsync(navigationParameter);
if (result.IsConfirmed)
if (result?.IsConfirmed ?? false)
{
_operationsService.RemoveAsync(filesToRemove).Forget();
}
Expand Down
2 changes: 1 addition & 1 deletion src/Camelot/Camelot.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
<Version>0.1.0</Version>
<Version>0.1.1</Version>
</PropertyGroup>
<ItemGroup>
<Compile Update="**\*.xaml.cs">
Expand Down

0 comments on commit a194065

Please sign in to comment.