mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-04 03:57:13 +08:00
improved timestamp checks
This commit is contained in:
parent
d1ff8ce3fe
commit
b1b1b575be
@ -139,10 +139,10 @@ func StoreSessionSaveData(uuid []byte, data defs.SessionSaveData, slot int) erro
|
|||||||
return errors.New("attempted to save an older session")
|
return errors.New("attempted to save an older session")
|
||||||
}
|
}
|
||||||
|
|
||||||
if data.Timestamp > int(time.Now().UTC().Add(time.Hour*48).UnixMilli()) {
|
if int64(data.Timestamp) > int64(time.Now().Add(time.Hour*48).UnixMilli()) {
|
||||||
return errors.New("attempted to save a future session save")
|
return errors.New("attempted to save a future session save")
|
||||||
}
|
}
|
||||||
if data.Timestamp < int(time.Now().UTC().Add(-time.Hour*48).UnixMilli()) {
|
if int64(data.Timestamp) < int64(time.Now().Add(-time.Hour*48).UnixMilli()) {
|
||||||
return errors.New("attempted to save a past session save")
|
return errors.New("attempted to save a past session save")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user