Browse Source

Fix: including millisecond trailing zeros

Amir Khan 8 years ago
parent
commit
a43f090b8a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      psiphon/common/utils.go

+ 1 - 1
psiphon/common/utils.go

@@ -35,7 +35,7 @@ import (
 	"time"
 	"time"
 )
 )
 
 
-const RFC3339Milli = "2006-01-02T15:04:05.999Z07:00"
+const RFC3339Milli = "2006-01-02T15:04:05.000Z07:00"
 
 
 // Contains is a helper function that returns true
 // Contains is a helper function that returns true
 // if the target string is in the list.
 // if the target string is in the list.