fix: while connected to MySQL if internet was lost no qso would be logged anymore
This commit is contained in:
@@ -1828,6 +1828,22 @@ export namespace main {
|
||||
this.database = source["database"];
|
||||
}
|
||||
}
|
||||
export class OfflineStatus {
|
||||
offline: boolean;
|
||||
pending: number;
|
||||
path: string;
|
||||
|
||||
static createFrom(source: any = {}) {
|
||||
return new OfflineStatus(source);
|
||||
}
|
||||
|
||||
constructor(source: any = {}) {
|
||||
if ('string' === typeof source) source = JSON.parse(source);
|
||||
this.offline = source["offline"];
|
||||
this.pending = source["pending"];
|
||||
this.path = source["path"];
|
||||
}
|
||||
}
|
||||
export class PGXLSettings {
|
||||
enabled: boolean;
|
||||
host: string;
|
||||
|
||||
Reference in New Issue
Block a user