Fix Proxied Message Logging

This commit is contained in:
Fennel 2020-04-24 17:22:46 -04:00 committed by Astrid
parent bdb6019cb9
commit c41f2c7c9b

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Threading.Tasks;
using DSharpPlus;
@ -57,7 +57,7 @@ namespace PluralKit.Bot
(BotPermissions(channel) & permissionSet) == permissionSet;
public static Instant SnowflakeToInstant(ulong snowflake) =>
Instant.FromUtc(2015, 1, 1, 0, 0, 0) + Duration.FromMilliseconds(snowflake << 22);
Instant.FromUtc(2015, 1, 1, 0, 0, 0) + Duration.FromMilliseconds(snowflake >> 22);
public static ulong InstantToSnowflake(Instant time) =>
(ulong) (time - Instant.FromUtc(2015, 1, 1, 0, 0, 0)).TotalMilliseconds >> 22;