5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-13 15:39:31 +08:00
wails/v2/internal/ffenestri/windows/wv2runtime/browser.go
Soheib El-Harrache 37987b3827
Fix browser.go
Fixed minimum version variable
2021-09-27 15:12:37 -04:00

24 lines
582 B
Go

// +build wv2runtime.browser
package wv2runtime
import (
"fmt"
"github.com/leaanthony/webview2runtime"
)
func doInstallationStrategy(installStatus installationStatus) error {
confirmed, err := webview2runtime.Confirm("This application requires the WebView2 runtime. Press OK to open the download page. Minimum version required: "+MinimumRuntimeVersion, "Missing Requirements")
if err != nil {
return err
}
if confirmed {
err = webview2runtime.OpenInstallerDownloadWebpage()
if err != nil {
return err
}
}
return fmt.Errorf("webview2 runtime not installed")
}