Skip to content

Commit

Permalink
Add changelog entries for 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
s-frei committed Mar 26, 2024
1 parent 9de9c10 commit ec1945e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

0.8.3 - unreleased
0.9.0 - unreleased
------------------

**Breaking:**
Expand All @@ -11,6 +11,8 @@ Changelog
**Features:**

- Get tracks by URL
- Improved tests
- Updated dependencies

**Bugfix:**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ public TrackList<SoundCloudTrack> getNext(@NonNull final TrackList<? extends Tra
@Override
public String getStreamUrl(@NonNull final SoundCloudTrack soundCloudTrack) throws TrackSearchException {
final String url = soundCloudTrack.getUrl();
final String trackJSON = clientIDRequest(api.getForUrlWithClientID(url, clientID)).getContentOrThrow();
final String intermediateURL = soundCloudUtility.extractURLForStream(trackJSON);
final String trackHTML = clientIDRequest(api.getForUrlWithClientID(url, clientID)).getContentOrThrow();
final String intermediateURL = soundCloudUtility.extractURLForStream(trackHTML);
final String streamJSON = clientIDRequest(api.getForUrlWithClientID(intermediateURL, clientID)).getContentOrThrow();
return soundCloudUtility.extractStreamUrl(streamJSON);
}
Expand Down

0 comments on commit ec1945e

Please sign in to comment.