Skip to content

Commit 4a7efbd

Browse files
committed
fix rate limit issue, add partner id
1 parent fd9db9f commit 4a7efbd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

β€ŽCargo.lockβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€ŽREADME.mdβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ nix profile install --experimental-features "nix-command flakes" github:tsirysnd
6969
Or download the latest release for your platform [here](https://github.com/tsirysndr/tunein-cli/releases).
7070

7171
## πŸ“¦ Downloads
72-
- `Mac`: arm64: [tunein_v0.2.4_aarch64-apple-darwin.tar.gz](https://github.com/tsirysndr/tunein-cli/releases/download/v0.2.4/tunein_v0.2.4_aarch64-apple-darwin.tar.gz) intel: [tunein_v0.2.4_x86_64-apple-darwin.tar.gz](https://github.com/tsirysndr/tunein-cli/releases/download/v0.2.4/tunein_v0.2.4_x86_64-apple-darwin.tar.gz)
73-
- `Linux`: [tunein_v0.2.4_x86_64-unknown-linux-gnu.tar.gz](https://github.com/tsirysndr/tunein-cli/releases/download/v0.2.4/tunein_v0.2.4_x86_64-unknown-linux-gnu.tar.gz)
72+
- `Mac`: arm64: [tunein_v0.2.5_aarch64-apple-darwin.tar.gz](https://github.com/tsirysndr/tunein-cli/releases/download/v0.2.5/tunein_v0.2.5_aarch64-apple-darwin.tar.gz) intel: [tunein_v0.2.5_x86_64-apple-darwin.tar.gz](https://github.com/tsirysndr/tunein-cli/releases/download/v0.2.5/tunein_v0.2.5_x86_64-apple-darwin.tar.gz)
73+
- `Linux`: [tunein_v0.2.5_x86_64-unknown-linux-gnu.tar.gz](https://github.com/tsirysndr/tunein-cli/releases/download/v0.2.5/tunein_v0.2.5_x86_64-unknown-linux-gnu.tar.gz)
7474
## πŸš€ Usage
7575
```
7676
USAGE:

β€Žsrc/extract.rsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pub async fn extract_stream_url(url: &str, playlist_type: Option<String>) -> Res
5555

5656
pub async fn get_currently_playing(station: &str) -> Result<String, Error> {
5757
let client = Client::new();
58-
let url = format!("https://feed.tunein.com/profiles/{}/nowPlaying", station);
58+
let url = format!("https://feed.tunein.com/profiles/{}/nowPlaying?partnerId=RadioTime", station);
5959
let response: NowPlaying = client
6060
.get(Url::parse(&url)?)
6161
.recv_json()

0 commit comments

Comments
Β (0)