Skip to content
Snippets Groups Projects
Commit 6f7b4689 authored by ali asaria's avatar ali asaria
Browse files

If no internet connection, skip checking github for new release

parent 334aa42e
No related branches found
No related tags found
No related merge requests found
......@@ -190,7 +190,10 @@ function InstallStepper({ setServer }) {
);
json = await rel.json();
} catch {
json.tag_name = 'Unable to Connect to Github Please Skip';
json.tag_name =
'Unable to Connect to Github -- Skipping API version check';
// just skip this step if we can't connect
setActiveStep(Steps.indexOf('CHECK_VERSION') + 1);
}
const tag = json.tag_name;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment