Compare commits

...

4 Commits

Author SHA1 Message Date
d41c4d2b2d release: version 0.6.2 🚀
Some checks failed
Build Docker image / Create Release (push) Successful in 1m1s
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 1m28s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped
Build Docker image / deploy (push) Successful in 1m46s
SonarQube Scan / SonarQube Trigger (push) Failing after 5m37s
2025-07-20 03:26:47 +02:00
bc7b16ecb4 fix: build issues, refs NOISSUE 2025-07-20 03:26:17 +02:00
081523b510 release: version 0.6.1 🚀
Some checks failed
Build Docker image / Create Release (push) Successful in 1m5s
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 1m29s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped
Build Docker image / deploy (push) Has been cancelled
SonarQube Scan / SonarQube Trigger (push) Has been cancelled
2025-07-20 03:24:40 +02:00
856e30aacc fix: remove local debugging configs, refs NOISSUE 2025-07-20 03:24:35 +02:00
4 changed files with 22 additions and 2 deletions

View File

@@ -5,6 +5,25 @@ Changelog
(unreleased)
------------
Fix
~~~
- Build issues, refs NOISSUE. [Simon Diesenreiter]
0.6.1 (2025-07-20)
------------------
Fix
~~~
- Remove local debugging configs, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.6.0 (2025-07-20)
------------------
Fix
~~~
- Formatting, refs NOISSUE. [Simon Diesenreiter]

View File

@@ -57,6 +57,7 @@ userCheckTimer.OnOccurence += async (s, ea) =>
LdapUserName = string.Empty,
AssociationInProgress = false,
WasChosenForSuggestionThisRound = false,
LikedSongs = new List<Song>()
};
dci.Users?.Add(newUser);
needsSaving = true;

View File

@@ -77,7 +77,7 @@ public class SpotifyApiClient
public string GetLoginRedirectUri()
{
return "http://127.0.0.1:5000/SpotifyLogin";
return AppConfiguration.Instance.WebUIBaseURL + (AppConfiguration.Instance.WebUIBaseURL.EndsWith("/") ? "SpotifyLogin" : "/SpotifyLogin");
}
private bool IsAuthTokenExpired(User user)

View File

@@ -1 +1 @@
0.6.0
0.6.2