mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
Fix NullReferenceError when HasValue is true but Value is null
This commit is contained in:
parent
ffae424a6c
commit
66e483be6f
1 changed files with 3 additions and 7 deletions
|
|
@ -5,11 +5,7 @@ using Myriad.Types;
|
|||
|
||||
namespace PluralKit.Bot
|
||||
{
|
||||
// Doing things like this instead of enabling D.NET's message cache because the message cache is, let's face it,
|
||||
// not particularly efficient? It allocates a dictionary *and* a queue for every single channel (500k in prod!)
|
||||
// whereas this is, worst case, one dictionary *entry* of a single ulong per channel, and one dictionary instance
|
||||
// on the whole instance, total. Yeah, much more efficient.
|
||||
// TODO: is this still needed after the D#+ migration?
|
||||
// TODO: Should this be moved to Myriad.Cache?
|
||||
public class LastMessageCacheService
|
||||
{
|
||||
private readonly IDictionary<ulong, CachedMessage> _cache = new ConcurrentDictionary<ulong, CachedMessage>();
|
||||
|
|
@ -34,8 +30,8 @@ namespace PluralKit.Bot
|
|||
public CachedMessage(Message msg)
|
||||
{
|
||||
mid = msg.Id;
|
||||
if (msg.ReferencedMessage.HasValue)
|
||||
if (msg.ReferencedMessage.Value != null)
|
||||
referenced_message = msg.ReferencedMessage.Value.Id;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue