Fix the issue

This commit is contained in:
Diamond Creeper 2024-12-02 21:43:00 +13:00
parent 7fad3c7b63
commit 2a2689bfb7
2 changed files with 5 additions and 5 deletions

1
.gitignore vendored
View file

@ -54,3 +54,4 @@ ehthumbs.db
# ASP.NET Core web app # ASP.NET Core web app
wwwroot/ wwwroot/
*.cache

View file

@ -58,7 +58,6 @@ class Program
await updateTask; // Wait for the rich presence update task to finish await updateTask; // Wait for the rich presence update task to finish
} }
private static async Task UpdateRichPresence() private static async Task UpdateRichPresence()
{ {
while (true) while (true)
@ -98,8 +97,8 @@ class Program
Timestamps = new Timestamps Timestamps = new Timestamps
{ {
Start = DateTime.UtcNow - playingInfo.Progress, Start = DateTime.UtcNow - playingInfo.Progress,
End = playingInfo.EndDate End = DateTime.UtcNow + (playingInfo.Duration - playingInfo.Progress)
}, },
Assets = new Assets Assets = new Assets
{ {
LargeImageKey = largeImageKey, LargeImageKey = largeImageKey,
@ -163,7 +162,7 @@ class Program
var configJson = JsonSerializer.Serialize(_config, new JsonSerializerOptions { WriteIndented = true }); var configJson = JsonSerializer.Serialize(_config, new JsonSerializerOptions { WriteIndented = true });
File.WriteAllText(ConfigFilePath, configJson); File.WriteAllText(ConfigFilePath, configJson);
Console.WriteLine("Configuration saved to config.json."); Console.WriteLine("Configuration saved to config.json.");
} }
} }
@ -214,7 +213,7 @@ class Program
Duration = TimeSpan.FromTicks((long)nowPlaying["RunTimeTicks"]), Duration = TimeSpan.FromTicks((long)nowPlaying["RunTimeTicks"]),
IsMusic = isMusic, IsMusic = isMusic,
NowPlayingItem = nowPlaying, NowPlayingItem = nowPlaying,
EndDate = new DateTime((long)nowPlaying["RunTimeTicks"]) EndDate = DateTime.UtcNow + TimeSpan.FromTicks((long)nowPlaying["RunTimeTicks"]) // Calculating end date based on duration
}; };
} }
} }