Skip to content

Commit f1dc383

Browse files
committed
refactor(predictions): update timestamp format
1 parent 1804852 commit f1dc383

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/boost/predictions.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ func writeWednesdayPredictions(dropTime time.Time, contracts []ei.EggIncContract
330330

331331
// Header
332332
b.WriteString("**📜 Leggacy Prediction 🔮**\n-# ")
333-
b.WriteString(bottools.WrapTimestamp(dropTime.Unix(), bottools.TimestampLongDate))
333+
b.WriteString(bottools.WrapTimestamp(dropTime.Unix(), bottools.TimestampShortDateTime))
334334
b.WriteByte('\n')
335335

336336
// Body
@@ -360,7 +360,7 @@ func writeFridayPredictions(dropTime time.Time, peContracts, ultraContracts []ei
360360

361361
// Header
362362
b.WriteString("**PE Leggacies Predictions 🔮**\n-# ")
363-
b.WriteString(bottools.WrapTimestamp(dropTime.Unix(), bottools.TimestampLongDate))
363+
b.WriteString(bottools.WrapTimestamp(dropTime.Unix(), bottools.TimestampShortDateTime))
364364
b.WriteByte('\n')
365365

366366
// Non-Ultra

0 commit comments

Comments
 (0)