return qso_id and adif data from create_qso() in an array so it can reused in other places aswell

This commit is contained in:
HB9HIL
2026-01-24 22:06:41 +01:00
parent 91fcbafbd1
commit f740b188c8
3 changed files with 45 additions and 34 deletions

View File

@@ -347,8 +347,8 @@ $("#qso_input").off('submit').on('submit', function (e) {
type: 'post',
timeout: 10000,
data: $(this).serialize(),
success: function (resdata) {
result = JSON.parse(resdata);
dataType: 'json',
success: function (result) {
if (result.message == 'success') {
activeStationId = result.activeStationId;
activeStationOP = result.activeStationOP;