Skip to content
This repository has been archived by the owner on Feb 1, 2023. It is now read-only.

Commit

Permalink
🐛 Fix stream not loading
Browse files Browse the repository at this point in the history
  • Loading branch information
markhaehnel committed May 31, 2021
1 parent 7de4eed commit 3f7a957
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -7,7 +7,7 @@ import retrofit2.http.Query
import retrofit2.http.Url

interface YouTubeService {
@GET("get_video_info")
@GET("get_video_info?html5=1")
fun getVideoInfo(@Query("video_id") videoId: String): Call<ResponseBody>

@GET("")
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -2,7 +2,7 @@

buildscript {
ext {
gradle_version = '4.2.0-alpha16'
gradle_version = '4.2.1'
kotlin_version = "1.4.21"
navigation_version = "2.3.0"
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https://services.gradle.org/distributions/gradle-6.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip

1 comment on commit 3f7a957

@markhaehnel
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixes #22

Please sign in to comment.