fix issue with profile chat meta loading
This commit is contained in:
parent
79eec08590
commit
2e99db2275
@ -28,18 +28,19 @@ namespace Stats.Dtos
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The time associated with SentAfter date
|
/// The time associated with SentAfter date
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string SentAfterTime { get; set; } = "00:00";
|
public string SentAfterTime { get; set; }
|
||||||
|
|
||||||
public DateTime? SentAfterDateTime => SentAfter?.Add(TimeSpan.Parse(SentAfterTime));
|
public DateTime? SentAfterDateTime => SentAfter?.Add(string.IsNullOrEmpty(SentAfterTime) ? TimeSpan.Zero : TimeSpan.Parse(SentAfterTime));
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// only look for messages sent before this date0
|
/// only look for messages sent before this date0
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public DateTime SentBefore { get; set; } = DateTime.UtcNow.Date;
|
public DateTime SentBefore { get; set; } = DateTime.UtcNow.Date;
|
||||||
|
|
||||||
public string SentBeforeTime { get; set; } = DateTime.UtcNow.ToString("HH:mm");
|
public string SentBeforeTime { get; set; }
|
||||||
|
|
||||||
public DateTime? SentBeforeDateTime => SentBefore.Add(TimeSpan.Parse(SentBeforeTime));
|
public DateTime? SentBeforeDateTime =>
|
||||||
|
SentBefore.Add(string.IsNullOrEmpty(SentBeforeTime) ? TimeSpan.Zero : TimeSpan.Parse(SentBeforeTime));
|
||||||
|
|
||||||
public bool IsExactMatch { get; set; }
|
public bool IsExactMatch { get; set; }
|
||||||
|
|
||||||
|
@ -469,6 +469,8 @@ public class Plugin : IPluginV2
|
|||||||
ClientId = request.ClientId,
|
ClientId = request.ClientId,
|
||||||
Before = request.Before,
|
Before = request.Before,
|
||||||
SentBefore = request.Before ?? DateTime.UtcNow,
|
SentBefore = request.Before ?? DateTime.UtcNow,
|
||||||
|
SentAfter = request.After,
|
||||||
|
After = request.After,
|
||||||
Count = request.Count,
|
Count = request.Count,
|
||||||
IsProfileMeta = true
|
IsProfileMeta = true
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user