We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02e12ab commit 3bf6f80Copy full SHA for 3bf6f80
main.go
@@ -403,6 +403,8 @@ func migrateApplications() {
403
}
404
405
406
+func migrateApplicationIntegrations()
407
+
408
func migrateGateways() {
409
log.Println("Migrating gateways")
410
@@ -555,13 +557,13 @@ func migrateDeviceProfiles() {
555
557
// v3 to v4 compatibility wrapper
556
558
function decodeUplink(input) {
559
return {
- object: Decode(input.fPort, input.bytes, input.variables)
560
+ data: Decode(input.fPort, input.bytes, input.variables)
561
};
562
563
564
function encodeDownlink(input) {
565
- data: Encode(input.fPort, input.data, input.variables)
566
+ bytes: Encode(input.fPort, input.data, input.variables)
567
568
569
0 commit comments