diff --git a/node/node.go b/node/node.go
index b42d91116c133c95f9058092edb9676c2565a476..7deefadf06cfeb365cb8036b826be965ef069df3 100644
--- a/node/node.go
+++ b/node/node.go
@@ -234,7 +234,7 @@ func (n *Node) getStatus() *pb.Status {
 	iceMounts, iceOk := n.ice.GetStatus()
 	ns := pb.Status{
 		Name:          n.name,
-		Timestamp:     uint64(time.Now().UTC().UnixNano()),
+		Timestamp:     uint64(time.Now().UTC().Unix()),
 		IcecastOk:     iceOk,
 		IcecastMounts: iceMounts,
 		CurBandwidth:  int32(getCurrentBandwidthUsage()),