Compare commits

...

4 Commits

Author SHA1 Message Date
187d8e92f0 release: version 0.6.10 🚀
Some checks failed
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 4m17s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped
SonarQube Scan / SonarQube Trigger (push) Failing after 6m10s
Build Docker image / Create Release (push) Successful in 40s
Build Docker image / deploy (push) Successful in 12m58s
2025-07-26 16:32:43 +02:00
07c7af4633 fix: proper Spotify token refresh flow, refs: NOISSUE 2025-07-26 16:32:41 +02:00
e38023d790 release: version 0.6.9 🚀
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Has been cancelled
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been cancelled
CI / linter (9.0.X, ubuntu-latest) (push) Has been cancelled
Build Docker image / Create Release (push) Successful in 44s
Build Docker image / deploy (push) Successful in 1m59s
2025-07-20 17:45:00 +02:00
939ae74e95 fix: improved Spotify auth check flow, refs NOISSUE 2025-07-20 17:44:52 +02:00
4 changed files with 28 additions and 3 deletions

View File

@@ -5,10 +5,32 @@ Changelog
(unreleased)
------------
Fix
~~~
- Proper Spotify token refresh flow, refs: NOISSUE. [Simon Diesenreiter]
0.6.9 (2025-07-20)
------------------
Fix
~~~
- Improved Spotify auth check flow, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.6.8 (2025-07-20)
------------------
Fix
~~~
- Improved Spotify auth check flow, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.6.7 (2025-07-20)
------------------

View File

@@ -257,7 +257,6 @@ messageSyncTimer.OnOccurence += async (s, ea) =>
// only start interaction timers in production builds
// for local/development testing we want those disabled
likePlaylistCheckTimer.Start();
if (!app.Environment.IsDevelopment())
{
logger.LogTrace("Starting timer for scheduled processes.");
@@ -265,6 +264,7 @@ if (!app.Environment.IsDevelopment())
userIntroTimer.Start();
pickOfTheDayTimer.Start();
ldapAssociationTimer.Start();
likePlaylistCheckTimer.Start();
}
else
{

View File

@@ -139,7 +139,10 @@ public class SpotifyApiClient
user.SpotifyAuthAccessToken = oAuthResponse.AccessToken;
user.SpotifyAuthExpiresAfterSeconds = oAuthResponse.ExpiresIn;
user.SpotifyAuthCreatedAt = oAuthResponse.CreatedAt;
if (!string.IsNullOrEmpty(oAuthResponse.RefreshToken))
{
user.SpotifyAuthRefreshToken = oAuthResponse.RefreshToken;
}
return user.SpotifyAuthAccessToken;
}
catch (Exception ex)

View File

@@ -1 +1 @@
0.6.8
0.6.10