We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1e5e9b commit 1bfd5e0Copy full SHA for 1bfd5e0
library/src/commonMain/kotlin/ru/stersh/subsonic/api/SubsonicApi.kt
@@ -349,13 +349,13 @@ class SubsonicApi(
349
.build()
350
}
351
352
- private fun URLBuilder.appendClientParameters() {
+ fun URLBuilder.appendClientParameters() {
353
parameters.append("c", clientId)
354
parameters.append("v", apiVersion)
355
parameters.append("f", "json")
356
357
358
- private fun URLBuilder.appendAuth(authType: AuthType) {
+ fun URLBuilder.appendAuth(authType: AuthType) {
359
parameters.append("u", this@SubsonicApi.username)
360
val userPassword = this@SubsonicApi.password
361
when (authType) {
0 commit comments