bedrock region handling - updated to set region value correctly if it exists in the config

This commit is contained in:
James Andrews
2025-06-23 00:12:58 +01:00
parent 0b5d3cfc30
commit eb251139b8

View File

@@ -58,6 +58,10 @@ func NewClient() (ret *BedrockClient) {
ret.bedrockRegion = ret.PluginBase.AddSetupQuestion("AWS Region", true)
if cfg.Region != "" {
ret.bedrockRegion.Value = cfg.Region
}
return
}