Compare commits

..

No commits in common. "e9a824c6ef3aaf77ea3465b69b2eeea176a0e8d3" and "183309e1ed19a6ffad58f662fa15faac33b3dd48" have entirely different histories.

3 changed files with 2 additions and 14 deletions

View File

@ -5,22 +5,10 @@ Changelog
(unreleased)
------------
Fix
~~~
- Exception thrown on LastOrDefault(), refs NOISSUE. [Simon
Diesenreiter]
0.3.1 (2025-05-24)
------------------
Fix
~~~
- Fix build errors, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.3.0 (2025-05-24)
------------------

View File

@ -92,7 +92,7 @@ pickOfTheDayTimer.OnOccurence += async (s, ea) =>
{
var dci = DataContext.Instance;
var lastSong = dci.SongSuggestions?.OrderBy(s => s.Id).LastOrDefault();
var lastSong = dci.SongSuggestions?.LastOrDefault();
if (lastSong != null && lastSong.Date >= DateTime.Today.Subtract(TimeSpan.FromDays(AppConfiguration.Instance.DaysBetweenRequests)))
{

View File

@ -1 +1 @@
0.3.2
0.3.1