1
0
Fork 0
mirror of synced 2024-06-02 10:54:44 +12:00

Merge pull request #972 from TorstenDittmann/fix-timezone-offset

Fix timezone offset
This commit is contained in:
Eldad A. Fux 2021-03-12 17:25:23 +02:00 committed by GitHub
commit 9cbbd613fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -27,6 +27,7 @@
## Bug Fixes
- Updated missing storage env vars
- Fixed a bug, that added a wrong timzone offset to user log timestamps
- Fixed a bug, that Response format header was not added in the access-control-allow-header list.
- Fixed a bug where countryName is unknown on sessions (#933)

View file

@ -94,7 +94,7 @@ $http->on('request', function (SwooleRequest $swooleRequest, SwooleResponse $swo
return;
}
$app = new App('America/New_York');
$app = new App('UTC');
try {
Authorization::cleanRoles();