Skip to content

Commit

Permalink
Changed default client to ANDROID_VR
Browse files Browse the repository at this point in the history
  • Loading branch information
felipeucelli committed Sep 25, 2024
1 parent 1d985dd commit 8fd6e61
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/com/github/felipeucelli/javatube/Youtube.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ public class Youtube {
private final boolean usePoToken;

/**
* Default client: WEB
* Default client: ANDROID_VR
* */
public Youtube(String url) throws Exception {
this(url, "ANDROID_TESTSUITE", false, false);
this(url, "ANDROID_VR", false, false);
}
/**
* @Clients:
Expand Down Expand Up @@ -57,13 +57,13 @@ public Youtube(String url, String clientName) throws Exception {
* Default client: WEB
* */
public Youtube(String url, boolean usePoToken) throws Exception {
this(url, "ANDROID_TESTSUITE", usePoToken, false);
this(url, "ANDROID_VR", usePoToken, false);
}
/**
* Default client: WEB
* */
public Youtube(String url, boolean usePoToken, boolean allowCache) throws Exception {
this(url, "ANDROID_TESTSUITE", usePoToken, allowCache);
this(url, "ANDROID_VR", usePoToken, allowCache);
}
/**
* @Clients:
Expand Down

0 comments on commit 8fd6e61

Please sign in to comment.