Skip to content

Commit 864ed5e

Browse files
committed
Updated to 8.0.2
Fixes Spotify redirect URI, updated AUTHORS, and updated CHANGES
1 parent b1dae43 commit 864ed5e

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

AUTHORS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,6 @@ Contributors
5959
* Determine if Spotify is playing an ad and empty files
6060
* Empty Snip.txt on exit
6161
* Refactored Settings.cs and Snip.cs
62+
63+
* VRC-messeth
64+
* Fixed Spotify redirect URL

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
CHANGES
22
=======
3+
**v8.0.2 (2025-Dec-14):**
4+
* Merged pull request #544 from VRC-messeth, which updates the redirect
5+
URI from localhost to 127.0.0.1 to comply with Spotify's API changes.
6+
* Fixed donation link in README.
7+
38
**v8.0.1 (2022-Oct-18):**
49
* Increased API polling from 1s to 2s. Track changes may reflect slightly
510
slower. This change was made due to Snip getting rate limited by

Snip/Players/Spotify.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ internal sealed class Spotify : MediaPlayer, IDisposable
4444
private string responseType = "code"; // Required by API
4545
private HttpListener httpListener;
4646
private bool httpListenerStop;
47-
private string callbackAddress = "http://localhost:10597/";
47+
private string callbackAddress = "http://127.0.0.1:10597/";
4848

4949
private string authorizationCode = string.Empty;
5050
private string authorizationToken = string.Empty;

0 commit comments

Comments
 (0)