Compare commits
4 Commits
95406be062
...
0.6.10
Author | SHA1 | Date | |
---|---|---|---|
187d8e92f0 | |||
07c7af4633 | |||
e38023d790 | |||
939ae74e95 |
22
HISTORY.md
22
HISTORY.md
@@ -5,10 +5,32 @@ Changelog
|
|||||||
(unreleased)
|
(unreleased)
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
Fix
|
||||||
|
~~~
|
||||||
|
- Proper Spotify token refresh flow, refs: NOISSUE. [Simon Diesenreiter]
|
||||||
|
|
||||||
|
|
||||||
|
0.6.9 (2025-07-20)
|
||||||
|
------------------
|
||||||
|
|
||||||
Fix
|
Fix
|
||||||
~~~
|
~~~
|
||||||
- Improved Spotify auth check flow, refs NOISSUE. [Simon Diesenreiter]
|
- 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)
|
0.6.7 (2025-07-20)
|
||||||
------------------
|
------------------
|
||||||
|
@@ -257,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.");
|
||||||
@@ -265,6 +264,7 @@ if (!app.Environment.IsDevelopment())
|
|||||||
userIntroTimer.Start();
|
userIntroTimer.Start();
|
||||||
pickOfTheDayTimer.Start();
|
pickOfTheDayTimer.Start();
|
||||||
ldapAssociationTimer.Start();
|
ldapAssociationTimer.Start();
|
||||||
|
likePlaylistCheckTimer.Start();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@@ -139,7 +139,10 @@ public class SpotifyApiClient
|
|||||||
user.SpotifyAuthAccessToken = oAuthResponse.AccessToken;
|
user.SpotifyAuthAccessToken = oAuthResponse.AccessToken;
|
||||||
user.SpotifyAuthExpiresAfterSeconds = oAuthResponse.ExpiresIn;
|
user.SpotifyAuthExpiresAfterSeconds = oAuthResponse.ExpiresIn;
|
||||||
user.SpotifyAuthCreatedAt = oAuthResponse.CreatedAt;
|
user.SpotifyAuthCreatedAt = oAuthResponse.CreatedAt;
|
||||||
user.SpotifyAuthRefreshToken = oAuthResponse.RefreshToken;
|
if (!string.IsNullOrEmpty(oAuthResponse.RefreshToken))
|
||||||
|
{
|
||||||
|
user.SpotifyAuthRefreshToken = oAuthResponse.RefreshToken;
|
||||||
|
}
|
||||||
return user.SpotifyAuthAccessToken;
|
return user.SpotifyAuthAccessToken;
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
|
@@ -1 +1 @@
|
|||||||
0.6.8
|
0.6.10
|
||||||
|
Reference in New Issue
Block a user