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:
parent
0f92171cea
commit
c8fd884071
2 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
*
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue