Skip to content

Commit 1bfd5e0

Browse files
committed
fix: make some functions public
1 parent b1e5e9b commit 1bfd5e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/src/commonMain/kotlin/ru/stersh/subsonic/api/SubsonicApi.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,13 +349,13 @@ class SubsonicApi(
349349
.build()
350350
}
351351

352-
private fun URLBuilder.appendClientParameters() {
352+
fun URLBuilder.appendClientParameters() {
353353
parameters.append("c", clientId)
354354
parameters.append("v", apiVersion)
355355
parameters.append("f", "json")
356356
}
357357

358-
private fun URLBuilder.appendAuth(authType: AuthType) {
358+
fun URLBuilder.appendAuth(authType: AuthType) {
359359
parameters.append("u", this@SubsonicApi.username)
360360
val userPassword = this@SubsonicApi.password
361361
when (authType) {

0 commit comments

Comments
 (0)