Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
e38023d790 | |||
939ae74e95 | |||
95406be062 | |||
918ed2e667 |
22
HISTORY.md
22
HISTORY.md
@ -5,11 +5,33 @@ Changelog
|
|||||||
(unreleased)
|
(unreleased)
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
Fix
|
||||||
|
~~~
|
||||||
|
- Improved Spotify auth check flow, refs NOISSUE. [Simon Diesenreiter]
|
||||||
|
|
||||||
|
|
||||||
|
0.6.8 (2025-07-20)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
Fix
|
||||||
|
~~~
|
||||||
|
- Improved Spotify auth check flow, refs NOISSUE. [Simon Diesenreiter]
|
||||||
|
|
||||||
|
Other
|
||||||
|
~~~~~
|
||||||
|
|
||||||
|
|
||||||
|
0.6.7 (2025-07-20)
|
||||||
|
------------------
|
||||||
|
|
||||||
Fix
|
Fix
|
||||||
~~~
|
~~~
|
||||||
- Attempted bugfix for crashing process on invalid spotify access token,
|
- Attempted bugfix for crashing process on invalid spotify access token,
|
||||||
refs NOISSUE. [Simon Diesenreiter]
|
refs NOISSUE. [Simon Diesenreiter]
|
||||||
|
|
||||||
|
Other
|
||||||
|
~~~~~
|
||||||
|
|
||||||
|
|
||||||
0.6.6 (2025-07-20)
|
0.6.6 (2025-07-20)
|
||||||
------------------
|
------------------
|
||||||
|
@ -87,8 +87,9 @@ likePlaylistCheckTimer.OnOccurence += async (s, ea) =>
|
|||||||
if (!await spotifyApiClient.IsUserAuthenticatedAsync(user))
|
if (!await spotifyApiClient.IsUserAuthenticatedAsync(user))
|
||||||
{
|
{
|
||||||
logger.LogWarning($"User {user.LdapUserName} is not authorized with Spotify - skipping playlist sync");
|
logger.LogWarning($"User {user.LdapUserName} is not authorized with Spotify - skipping playlist sync");
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
var foundPlaylist = dci.SmartPlaylistDefinitions?.Where(p => p.CreatedBy == user).ToList().Where(p => p.IsThisUsersLikedSongsPlaylist).SingleOrDefault();
|
var foundPlaylist = dci.SmartPlaylistDefinitions?.Where(p => p.CreatedBy == user).ToList().Where(p => p.IsThisUsersLikedSongsPlaylist).SingleOrDefault();
|
||||||
if (foundPlaylist == null)
|
if (foundPlaylist == null)
|
||||||
{
|
{
|
||||||
@ -103,6 +104,7 @@ likePlaylistCheckTimer.OnOccurence += async (s, ea) =>
|
|||||||
logger.LogWarning($"Syncing playlists for user {user.LdapUserName}");
|
logger.LogWarning($"Syncing playlists for user {user.LdapUserName}");
|
||||||
await playlistSynchronizer.SynchronizeUserPlaylistsAsync(user);
|
await playlistSynchronizer.SynchronizeUserPlaylistsAsync(user);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (needsSaving)
|
if (needsSaving)
|
||||||
{
|
{
|
||||||
@ -255,7 +257,6 @@ messageSyncTimer.OnOccurence += async (s, ea) =>
|
|||||||
|
|
||||||
// only start interaction timers in production builds
|
// only start interaction timers in production builds
|
||||||
// for local/development testing we want those disabled
|
// for local/development testing we want those disabled
|
||||||
likePlaylistCheckTimer.Start();
|
|
||||||
if (!app.Environment.IsDevelopment())
|
if (!app.Environment.IsDevelopment())
|
||||||
{
|
{
|
||||||
logger.LogTrace("Starting timer for scheduled processes.");
|
logger.LogTrace("Starting timer for scheduled processes.");
|
||||||
@ -263,6 +264,7 @@ if (!app.Environment.IsDevelopment())
|
|||||||
userIntroTimer.Start();
|
userIntroTimer.Start();
|
||||||
pickOfTheDayTimer.Start();
|
pickOfTheDayTimer.Start();
|
||||||
ldapAssociationTimer.Start();
|
ldapAssociationTimer.Start();
|
||||||
|
likePlaylistCheckTimer.Start();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -1 +1 @@
|
|||||||
0.6.7
|
0.6.9
|
||||||
|
Loading…
x
Reference in New Issue
Block a user