fix: null checking

This commit is contained in:
antonio 2023-09-13 16:19:50 +02:00
parent 570ad1c984
commit 16561be854
2 changed files with 8 additions and 6 deletions

View file

@ -7,5 +7,5 @@ import com.google.gson.annotations.SerializedName
@Keep
class ApiResponse {
@SerializedName("subsonic-response")
var subsonicResponse: SubsonicResponse? = null
lateinit var subsonicResponse: SubsonicResponse;
}