This commit is contained in:
Michael Wain 2025-03-06 02:04:31 +03:00
parent 02509466a6
commit 06a9c773fc
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "soundcloud"
version = "0.1.10"
version = "0.1.11"
edition = "2021"
description = "A small rust crate for fetching data from soundcloud without developer account"
authors = ["alterwain"]

View File

@ -76,7 +76,7 @@ pub async fn get_playlists(
user_id: u64,
client_id: String,
app_version: String,
) -> Result<CloudPlaylists, Box<dyn Error>> {
) -> Result<CloudPlaylists, Box<dyn Error + Send + Sync>> {
let client = reqwest::Client::new();
let resp = client.get(format!("https://{}/users/{}/playlists_without_albums?client_id={}&limit=10&offset=0&linked_partitioning=1&app_version={}&app_locale=en", SOUNDCLOUD_API_DOMAIN, user_id, client_id, app_version))