fix: solve issue with Antenna Genius for remote operations
This commit is contained in:
@@ -1089,6 +1089,7 @@ export namespace main {
|
||||
export class AntGeniusSettings {
|
||||
enabled: boolean;
|
||||
host: string;
|
||||
password: string;
|
||||
|
||||
static createFrom(source: any = {}) {
|
||||
return new AntGeniusSettings(source);
|
||||
@@ -1098,6 +1099,7 @@ export namespace main {
|
||||
if ('string' === typeof source) source = JSON.parse(source);
|
||||
this.enabled = source["enabled"];
|
||||
this.host = source["host"];
|
||||
this.password = source["password"];
|
||||
}
|
||||
}
|
||||
export class AudioSettings {
|
||||
|
||||
Reference in New Issue
Block a user