mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 04:22:04 -04:00
Fixed compiler warning
This commit is contained in:
@@ -61,7 +61,7 @@ public class TwitchGraphQl(string? proxy = null, CancellationToken cancellationT
|
|||||||
await using var db = new ApplicationDbContext();
|
await using var db = new ApplicationDbContext();
|
||||||
await db.TwitchViewCounts.AddAsync(new TwitchViewCountDbModel
|
await db.TwitchViewCounts.AddAsync(new TwitchViewCountDbModel
|
||||||
{
|
{
|
||||||
Topic = stream.Id.ToString()!,
|
Topic = stream.Id!,
|
||||||
Viewers = stream.ViewerCount!.Value,
|
Viewers = stream.ViewerCount!.Value,
|
||||||
Time = DateTimeOffset.UtcNow,
|
Time = DateTimeOffset.UtcNow,
|
||||||
ServerTime = 0
|
ServerTime = 0
|
||||||
|
|||||||
Reference in New Issue
Block a user