mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
fix: crash on goto to SHA, NullReferenceException (#741)
This commit is contained in:
parent
4160f8ab9c
commit
bf4080b773
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ namespace SourceGit.Views
|
|||
open.Icon = App.CreateMenuIcon("Icons.Commit");
|
||||
open.Click += (_, ev) =>
|
||||
{
|
||||
detail.NavigateTo(_lastHover.Link);
|
||||
detail.NavigateTo(link);
|
||||
ev.Handled = true;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue