RPetrov

Results 1 comments of RPetrov

I have the same. ``` private fun getVideo(url: String): Video? { val video = VimeoClient.getInstance().fetchVideoSync(url, null) video?.body()?.apply { } ?: Assert.fail(video?.toString()) return video?.body() } @Test fun getVideoFile() { getVideo("videos/${ID}")?.let {...