Fix issues arise through shared height

This commit is contained in:
Infi
2024-04-23 06:19:11 +02:00
parent 6452f937b5
commit fc8199b3e5
3 changed files with 16 additions and 11 deletions
+2 -2
View File
@@ -67,8 +67,8 @@ internal class Message {
// Not stored in the database:
internal int Hash { get; }
internal float? Height { get; set; }
internal bool IsVisible { get; set; }
internal Dictionary<Guid, float?> Height { get; } = new();
internal Dictionary<Guid, bool> IsVisible { get; } = new();
internal Message(ulong receiver, ChatCode code, List<Chunk> sender, List<Chunk> content, SeString senderSource, SeString contentSource) {
Receiver = receiver;