mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-12 21:05:48 +02:00
handle nil properly with file nodes
This commit is contained in:
parent
4ffc9a5395
commit
95426c5e46
2 changed files with 8 additions and 0 deletions
|
@ -17,5 +17,9 @@ func NewCommitFileNode(node *Node[models.CommitFile]) *CommitFileNode {
|
|||
|
||||
// returns the underlying node, without any commit-file-specific methods attached
|
||||
func (self *CommitFileNode) Raw() *Node[models.CommitFile] {
|
||||
if self == nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
return self.Node
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue