Skip to content

Commit

Permalink
Print detected PipeWire version in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
kdkasad committed Sep 3, 2022
1 parent 2a7ec81 commit bf599bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ func resetUI(ctx *ntcontext) {

if ctx.serverInfo.outdatedPipeWire {
ctx.views.Push(makeFatalErrorView(ctx,
fmt.Sprintf("Detected outdated version of PipeWire. %s requires PipeWire v0.3.28 or newer.",
ctx.appName)))
fmt.Sprintf("Detected outdated version of PipeWire (v%d.%d.%d). %s requires PipeWire v0.3.28 or newer.",
ctx.serverInfo.major, ctx.serverInfo.minor, ctx.serverInfo.patch, ctx.appName)))
}
}

0 comments on commit bf599bd

Please sign in to comment.