diff --git a/revid/senders.go b/revid/senders.go index 5c64e982..a06762c6 100644 --- a/revid/senders.go +++ b/revid/senders.go @@ -171,7 +171,7 @@ func (s *httpSender) extractMeta(r string) error { s.log(logger.Warning, pkg+"No timestamp in reply") } else { s.log(logger.Debug, fmt.Sprintf("%v got timestamp: %v", pkg, t)) - mts.SetTimeStamp(uint64(t)) + mts.MetaData.SetTimeStamp(uint64(t)) } // Extract location from reply @@ -180,7 +180,7 @@ func (s *httpSender) extractMeta(r string) error { s.log(logger.Warning, pkg+"No location in reply") } else { s.log(logger.Debug, fmt.Sprintf("%v got location: %v", pkg, g)) - mts.SetLocation(g) + mts.MetaData.SetLocation(g) } return nil