1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-12 00:50:53 +00:00

Rip out the weekly/monthly HLLs - they're redundant

The weekly data can be constructed much more flexibly by just using the
daily data.
This commit is contained in:
Kane York 2016-01-15 20:54:30 -08:00
parent 9ca9b6b213
commit e117766eb6
8 changed files with 76 additions and 122 deletions

View file

@ -12,6 +12,7 @@ import (
"sync"
"testing"
"time"
"strconv"
)
const (
@ -272,7 +273,7 @@ func TSealForSavePubMsg(tb testing.TB, cmd Command, channel string, arguments in
if deleteMode {
form.Set("delete", "1")
}
form.Set("time", time.Now().Format(time.UnixDate))
form.Set("time", strconv.FormatInt(time.Now().Unix(), 10))
sealed, err := SealRequest(form)
if err != nil {