Explorar el Código

Fix the expiration time display problem in the dashboard due to time zone issues (#820)

master
xiangxiren hace 3 años
committed by GitHub
padre
commit
0bc7a214bf
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      src/DotNetCore.CAP/Internal/Helper.cs

+ 2
- 1
src/DotNetCore.CAP/Internal/Helper.cs Ver fichero

@@ -9,7 +9,8 @@ namespace DotNetCore.CAP.Internal
{
public static class Helper
{
private static readonly DateTime Epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Local);
private static readonly DateTime Epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Local)
.AddHours(TimeZoneInfo.Local.BaseUtcOffset.Hours);

public static long ToTimestamp(DateTime value)
{


Cargando…
Cancelar
Guardar