fix: recording not being sent if mail enable was not checked

This commit is contained in:
2026-06-28 19:08:32 +02:00
parent 464a1c702c
commit 165f33caa5
9 changed files with 166 additions and 114 deletions
+4 -24
View File
@@ -1564,6 +1564,8 @@ export namespace main {
sent_date: string;
rcvd_date: string;
via: string;
notes: string;
comment: string;
static createFrom(source: any = {}) {
return new QSLBulkUpdate(source);
@@ -1576,6 +1578,8 @@ export namespace main {
this.sent_date = source["sent_date"];
this.rcvd_date = source["rcvd_date"];
this.via = source["via"];
this.notes = source["notes"];
this.comment = source["comment"];
}
}
export class QSLDefaults {
@@ -2897,30 +2901,6 @@ export namespace qso {
return a;
}
}
export class UploadRow {
id: number;
qso_date: string;
callsign: string;
band: string;
mode: string;
country: string;
status: string;
static createFrom(source: any = {}) {
return new UploadRow(source);
}
constructor(source: any = {}) {
if ('string' === typeof source) source = JSON.parse(source);
this.id = source["id"];
this.qso_date = source["qso_date"];
this.callsign = source["callsign"];
this.band = source["band"];
this.mode = source["mode"];
this.country = source["country"];
this.status = source["status"];
}
}
export class WorkedBefore {
callsign: string;
count: number;