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
2 changed files with 2 additions and 1 deletions
+1
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)
+1 -1
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();