Use system timezone instead of setting.DefaultUILocation

This commit is contained in:
Anthony Wang 2022-03-30 17:51:06 -05:00
parent 6e802b549d
commit 016d2d410b
Signed by: a
GPG key ID: BC96B00AEC5F2D76

View file

@ -7,8 +7,6 @@ package activitypub
import (
"time"
"code.gitea.io/gitea/modules/setting"
"github.com/go-fed/activity/pub"
)
@ -25,5 +23,5 @@ func NewClock() (c *Clock, err error) {
// Now function
func (c *Clock) Now() time.Time {
return time.Now().In(setting.DefaultUILocation)
return time.Now().Local()
}