Compare commits
No commits in common. "main" and "0.3.1" have entirely different histories.
12
HISTORY.md
12
HISTORY.md
@ -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)
|
||||
------------------
|
||||
|
@ -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)))
|
||||
{
|
||||
|
@ -1 +1 @@
|
||||
0.3.2
|
||||
0.3.1
|
||||
|
Loading…
x
Reference in New Issue
Block a user