mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
Fix improper handling of connectivity errors
This commit is contained in:
parent
cb86d3c158
commit
997b3c92bb
@ -156,7 +156,14 @@ namespace Bloxstrap
|
|||||||
|
|
||||||
// TEMPORARY FILL-IN FOR NEW FUNCTIONALITY
|
// TEMPORARY FILL-IN FOR NEW FUNCTIONALITY
|
||||||
// REMOVE WHEN LARGER REFACTORING IS DONE
|
// REMOVE WHEN LARGER REFACTORING IS DONE
|
||||||
await RobloxDeployment.InitializeConnectivity();
|
var connectionResult = await RobloxDeployment.InitializeConnectivity();
|
||||||
|
|
||||||
|
if (connectionResult is not null)
|
||||||
|
{
|
||||||
|
Logger.WriteException(LOG_IDENT, connectionResult);
|
||||||
|
Frontend.ShowConnectivityDialog("Roblox", Bloxstrap.Resources.Strings.Bootstrapper_Connectivity_Preventing, connectionResult);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (LaunchSettings.IsUninstall && IsFirstRun)
|
if (LaunchSettings.IsUninstall && IsFirstRun)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user