Merge branch 'sendCloudlogEntry' into 'master'

Fix cloudlog station ID issue after profile refactor

See merge request gridtracker.org/gridtracker!320

If this is changing anything in the UI or operational behavior, please prepare to update the wiki!
master
T Loomis 2024-07-11 23:58:58 +00:00
commit 6ff063d6a4
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -2460,7 +2460,7 @@ function sendCloudlogEntry(report)
{
CloudLogValidateURL(true);
CloudlogURL.value = CloudlogURL.value.endsWith("/") ? CloudlogURL.value.slice(0, -1) : CloudlogURL.value;
var postData = { key: CloudlogAPI.value, station_profile_id: CloudlogStationProfileID.value, type: "adif", string: report };
var postData = { key: CloudlogAPI.value, station_profile_id: CloudlogStationProfile.value, type: "adif", string: report };
getPostJSONBuffer(
CloudlogURL.value + "/index.php/api/qso",
CloudlogSendLogResult,