Skip to content

Commit

Permalink
Merge pull request #7 from rakirizu/main
Browse files Browse the repository at this point in the history
Fix infinite recursion #6
  • Loading branch information
leaanthony authored Aug 10, 2024
2 parents 67735c1 + 5a39b43 commit 1cea6fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/edge/chromium.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func NewChromium() *Chromium {
}

func (e *Chromium) errorCallback(err error) {
e.errorCallback(err)
e.globalErrorCallback(err)
os.Exit(1)
}

Expand Down

0 comments on commit 1cea6fa

Please sign in to comment.