diff --git a/reddinator/reddinator-release.apk b/reddinator/reddinator-release.apk index 426b46a..dd50138 100644 Binary files a/reddinator/reddinator-release.apk and b/reddinator/reddinator-release.apk differ diff --git a/reddinator/src/main/assets/js/account.js b/reddinator/src/main/assets/js/account.js index afe9ec3..2c172b2 100644 --- a/reddinator/src/main/assets/js/account.js +++ b/reddinator/src/main/assets/js/account.js @@ -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; @@ -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) diff --git a/reddinator/src/main/res/layout/activity_search.xml b/reddinator/src/main/res/layout/activity_search.xml index eed5a13..7f30afd 100644 --- a/reddinator/src/main/res/layout/activity_search.xml +++ b/reddinator/src/main/res/layout/activity_search.xml @@ -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" />