kopia lustrzana https://gitlab.com/gridtracker.org/gridtracker
Fix missing Cloudlog Station Profile ID https://gitlab.com/gridtracker.org/gridtracker/-/issues/133
rodzic
236ff1097d
commit
a62fe8349a
|
@ -2627,6 +2627,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
size="12"
|
size="12"
|
||||||
oninput=" ValidateText(this); adifTextValueChange(this);"
|
oninput=" ValidateText(this); adifTextValueChange(this);"
|
||||||
/>
|
/>
|
||||||
|
<br />
|
||||||
|
Station Profile ID<input
|
||||||
|
id="CloudlogStationProfileID"
|
||||||
|
type="text"
|
||||||
|
class="inputTextValue"
|
||||||
|
size="12"
|
||||||
|
oninput=" ValidateText(this); adifTextValueChange(this);"
|
||||||
|
/>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<div
|
<div
|
||||||
|
|
|
@ -2619,7 +2619,7 @@ function sendCloudlogEntry(report)
|
||||||
{
|
{
|
||||||
if (typeof nw != "undefined")
|
if (typeof nw != "undefined")
|
||||||
{
|
{
|
||||||
var postData = { key: CloudlogAPI.value, type: "adif", string: report };
|
var postData = { key: CloudlogAPI.value, station_profile_id: CloudlogStationProfileID.value, type: "adif", string: report };
|
||||||
getPostJSONBuffer(
|
getPostJSONBuffer(
|
||||||
CloudlogURL.value,
|
CloudlogURL.value,
|
||||||
CloudlogSendLogResult,
|
CloudlogSendLogResult,
|
||||||
|
|
|
@ -172,6 +172,7 @@ var def_adifLogSettings = {
|
||||||
HRDLOGUploadCode: "",
|
HRDLOGUploadCode: "",
|
||||||
CloudlogURL: "http://127.0.0.1/index.php/api/qso",
|
CloudlogURL: "http://127.0.0.1/index.php/api/qso",
|
||||||
CloudlogAPI: "",
|
CloudlogAPI: "",
|
||||||
|
CloudlogStationProfileID: "1",
|
||||||
eQSLUser: "",
|
eQSLUser: "",
|
||||||
eQSLPassword: "",
|
eQSLPassword: "",
|
||||||
eQSLNickname: ""
|
eQSLNickname: ""
|
||||||
|
|
Ładowanie…
Reference in New Issue