Compare commits
2 Commits
0.6.9
...
187d8e92f0
Author | SHA1 | Date | |
---|---|---|---|
187d8e92f0 | |||
07c7af4633 |
11
HISTORY.md
11
HISTORY.md
@@ -5,10 +5,21 @@ 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)
|
||||
------------------
|
||||
|
@@ -139,7 +139,10 @@ public class SpotifyApiClient
|
||||
user.SpotifyAuthAccessToken = oAuthResponse.AccessToken;
|
||||
user.SpotifyAuthExpiresAfterSeconds = oAuthResponse.ExpiresIn;
|
||||
user.SpotifyAuthCreatedAt = oAuthResponse.CreatedAt;
|
||||
user.SpotifyAuthRefreshToken = oAuthResponse.RefreshToken;
|
||||
if (!string.IsNullOrEmpty(oAuthResponse.RefreshToken))
|
||||
{
|
||||
user.SpotifyAuthRefreshToken = oAuthResponse.RefreshToken;
|
||||
}
|
||||
return user.SpotifyAuthAccessToken;
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
@@ -1 +1 @@
|
||||
0.6.9
|
||||
0.6.10
|
||||
|
Reference in New Issue
Block a user