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 6897fe5 commit dfbaf37Copy full SHA for dfbaf37
internal/backend/basicstation/structs/radio_meta_data.go
@@ -80,7 +80,7 @@ func SetRadioMetaDataToProto(loraBand band.Band, gatewayID lorawan.EUI64, rmd Ra
80
if rxTime := rmd.UpInfo.RxTime; rxTime != 0 {
81
sec, nsec := math.Modf(rmd.UpInfo.RxTime)
82
if sec != 0 {
83
- val := time.Unix(int64(sec), int64(nsec))
+ val := time.Unix(int64(sec), int64(nsec*1e9))
84
pb.RxInfo.GwTime = timestamppb.New(val)
85
}
86
0 commit comments