Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
sgloutnikov committed Sep 28, 2017
1 parent 1ea823a commit 0e061a1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
minSdkVersion 14
targetSdkVersion 20
versionCode 1
versionName "1.1.0"
versionName "1.1.2"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/java/co/bgcs/neterraproxy/NeterraProxy.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public Response serve(IHTTPSession session) {

private String getStream(String issueId) {
checkAuthentication();
String channelPlayLink = "";
String playLinkJson = "";

RequestBody formBody = new FormBody.Builder()
.add("issue_id", issueId)
Expand All @@ -96,12 +96,12 @@ private String getStream(String issueId) {
.build();
try {
okhttp3.Response response = client.newCall(request).execute();
channelPlayLink = Utils.getPlayLink(response.body().string());
playLinkJson = response.body().string();
} catch (IOException e) {
e.printStackTrace();
}

return channelPlayLink;
return Utils.getPlayLink(playLinkJson);
}

private String getM3U8() {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
android:id="@+id/versionTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1.1.0"
android:text="1.1.2"
android:layout_marginRight="16dp"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
Expand Down

0 comments on commit 0e061a1

Please sign in to comment.