- debug searchYoutube fun (2x)
This commit is contained in:
dalbodeule 2024-08-06 20:44:46 +09:00
parent bedd5406a0
commit 5dcbbdeb80
No known key found for this signature in database
GPG Key ID: EFA860D069C9FA65

View File

@ -40,12 +40,12 @@ fun searchYoutube(query: String): String? {
val responseBody = response.body?.string()
val json = gson.fromJson(responseBody, JsonObject::class.java)
val items = json.getAsJsonArray("items")
val items = json.getAsJsonArray("videos")
if (items.size() == 0) return null
val firstItem = items[0].asJsonObject
val videoUrl = firstItem.get("url").asString
val videoUrl = firstItem.get("link").asString
return videoUrl
}