1
0
Fork 0
mirror of https://github.com/sensebox/blockly-app synced 2025-04-05 17:30:28 +02:00

enters manual wifi selection every time (ios fix)

This commit is contained in:
Thiemann96 2020-02-12 13:04:08 +01:00
parent 0f92171cea
commit c8fd884071
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,6 @@
import { Component } from '@angular/core';
import { IonicPage, NavController, NavParams } from 'ionic-angular';
import { OtaWizardPage } from '../ota-wizard/ota-wizard';
/**
* Generated class for the AboutPage page.
*

View file

@ -18,7 +18,8 @@ export class OtaWifiProvider {
public strategy: WifiStrategy
constructor(private platform: Platform, private http: HttpClient) {
this.strategy = this.selectStrategy()
this.strategy = WifiStrategy.Manual;
// this.strategy = this.selectStrategy()
}
private selectStrategy (): WifiStrategy {