Skip to content

Commit

Permalink
Built version 3.17 apk
Browse files Browse the repository at this point in the history
  • Loading branch information
micwallace committed Aug 7, 2016
1 parent 86fa881 commit f952f6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file modified reddinator/reddinator-release.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions reddinator/src/main/assets/js/account.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ function appendPost(postData, prepend){
}
postElem.data("likes", postData.likes);
} else {
postElem.data("likes", "null");
postElem.data("likes", null);
}
// check thumbnail
var thumbnail = postData.thumbnail;
Expand Down Expand Up @@ -260,7 +260,7 @@ function appendComment(commentData, prepend, parentId){
}
commentElem.data("likes", commentData.likes);
} else {
commentElem.data("likes", "null");
commentElem.data("likes", null);
}
// check if author
if (commentData.author==username)
Expand Down
2 changes: 1 addition & 1 deletion reddinator/src/main/res/layout/activity_search.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
android:layout_height="wrap_content"
android:layout_below="@id/topbar"
android:text="@string/limit_sr"
android:textColor="#FF4500"
android:textColor="#e63d00"
android:id="@+id/limit_sr" />

<LinearLayout
Expand Down

0 comments on commit f952f6d

Please sign in to comment.