fix: use enable unfinished features env var to set enableV4
This commit is contained in:
@@ -55,6 +55,7 @@ export class WebApplication extends SNApplication {
|
||||
scope: angular.IScope,
|
||||
defaultSyncServerHost: string,
|
||||
public bridge: Bridge,
|
||||
enableUnfinishedFeatures: boolean,
|
||||
webSocketUrl: string,
|
||||
) {
|
||||
super(
|
||||
@@ -67,7 +68,7 @@ export class WebApplication extends SNApplication {
|
||||
[],
|
||||
defaultSyncServerHost,
|
||||
AppVersion,
|
||||
isDev,
|
||||
enableUnfinishedFeatures,
|
||||
webSocketUrl,
|
||||
);
|
||||
this.$compile = $compile;
|
||||
|
||||
@@ -29,7 +29,8 @@ export class ApplicationGroup extends SNApplicationGroup {
|
||||
$timeout: ng.ITimeoutService,
|
||||
private defaultSyncServerHost: string,
|
||||
private bridge: Bridge,
|
||||
private webSocketUrl: string
|
||||
private enableUnfinishedFeatures: boolean,
|
||||
private webSocketUrl: string,
|
||||
) {
|
||||
super(new WebDeviceInterface($timeout, bridge));
|
||||
this.$compile = $compile;
|
||||
@@ -64,6 +65,7 @@ export class ApplicationGroup extends SNApplicationGroup {
|
||||
scope,
|
||||
this.defaultSyncServerHost,
|
||||
this.bridge,
|
||||
this.enableUnfinishedFeatures,
|
||||
this.webSocketUrl,
|
||||
);
|
||||
const appState = new AppState(
|
||||
|
||||
Reference in New Issue
Block a user