1
0
mirror of https://github.com/ultrasonic/ultrasonic synced 2025-02-17 04:00:39 +01:00

Revert accidental changes in the method signature.

This commit is contained in:
tzugen 2021-05-11 11:54:31 +02:00
parent 5b6fa20050
commit c66118172c
No known key found for this signature in database
GPG Key ID: 61E9C34BC10EC930

View File

@ -108,7 +108,7 @@ open class RESTMusicService(
@Throws(Exception::class)
override fun getIndexes(
musicFolderId: String,
musicFolderId: String?,
refresh: Boolean
): Indexes? {
val indexName = INDEXES_STORAGE_NAME + (musicFolderId ?: "")
@ -170,7 +170,7 @@ open class RESTMusicService(
@Throws(Exception::class)
override fun getMusicDirectory(
id: String,
name: String,
name: String?,
refresh: Boolean
): MusicDirectory? {
val response = responseChecker.callWithResponseCheck { api ->