Skip to content

Commit

Permalink
Fix #518
Browse files Browse the repository at this point in the history
  • Loading branch information
David-Development committed Apr 26, 2016
1 parent cc006d5 commit fdb4b38
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
Binary file modified News-Android-App.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions News-Android-App/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="de.luhmer.owncloudnewsreader"
android:versionCode="108"
android:versionName="0.9.8.4"
android:versionCode="109"
android:versionName="0.9.8.5"
android:installLocation="auto">

<uses-permission android:name="android.permission.INTERNET" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private static RssItem parseItem(JSONObject e) throws JSONException {
rssItem.setFeedId(e.optLong("feedId"));
rssItem.setGuid(guid);
rssItem.setGuidHash(e.optString("guidHash"));
rssItem.setFingerprint(e.optString("fingerprint"));
rssItem.setFingerprint(e.optString("fingerprint", null));
rssItem.setBody(content);
rssItem.setLastModified(new Date(e.optLong("lastModified")));
rssItem.setRead(!e.optBoolean("unread"));
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,12 @@ Updates
---------------------
0.9.8.4 (Google Play)
0.9.8.5 (Google Play)
---------------------
- Critical bug fix - <a href="https://github.com/owncloud/News-Android-App/issues/518">#518 Bug in 0.9.8.3: Using the app caused marking all articles as read and starred articles are lost</a>
0.9.8.4
---------------------
- Critical bug fix - <a href="https://github.com/owncloud/News-Android-App/issues/518">#518 Bug in 0.9.8.3: Using the app caused marking all articles as read and starred articles are lost</a>
Expand Down

0 comments on commit fdb4b38

Please sign in to comment.