Fix !quote, use ToUniversalTime() on the timestamp saved to the database when saving a new quote
This commit is contained in:
parent
7d4a81dcde
commit
c9af82015b
1 changed files with 1 additions and 1 deletions
|
@ -313,7 +313,7 @@ namespace Geekbot.Bot.Commands.Utils.Quote
|
||||||
InternalId = internalId,
|
InternalId = internalId,
|
||||||
GuildId = Context.Guild.Id.AsLong(),
|
GuildId = Context.Guild.Id.AsLong(),
|
||||||
UserId = message.Author.Id.AsLong(),
|
UserId = message.Author.Id.AsLong(),
|
||||||
Time = message.Timestamp.DateTime,
|
Time = message.Timestamp.DateTime.ToUniversalTime(),
|
||||||
Quote = message.Content,
|
Quote = message.Content,
|
||||||
Image = image
|
Image = image
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue