Skip to content

Commit fdb4b38

Browse files
Fix #518
1 parent cc006d5 commit fdb4b38

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

News-Android-App.apk

-148 Bytes
Binary file not shown.

News-Android-App/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools"
44
package="de.luhmer.owncloudnewsreader"
5-
android:versionCode="108"
6-
android:versionName="0.9.8.4"
5+
android:versionCode="109"
6+
android:versionName="0.9.8.5"
77
android:installLocation="auto">
88

99
<uses-permission android:name="android.permission.INTERNET" />

News-Android-App/src/main/java/de/luhmer/owncloudnewsreader/reader/owncloud/InsertItemIntoDatabase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ private static RssItem parseItem(JSONObject e) throws JSONException {
7272
rssItem.setFeedId(e.optLong("feedId"));
7373
rssItem.setGuid(guid);
7474
rssItem.setGuidHash(e.optString("guidHash"));
75-
rssItem.setFingerprint(e.optString("fingerprint"));
75+
rssItem.setFingerprint(e.optString("fingerprint", null));
7676
rssItem.setBody(content);
7777
rssItem.setLastModified(new Date(e.optLong("lastModified")));
7878
rssItem.setRead(!e.optBoolean("unread"));

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,12 @@ Updates
8989
---------------------
9090
9191
92-
0.9.8.4 (Google Play)
92+
0.9.8.5 (Google Play)
93+
---------------------
94+
- 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>
95+
96+
97+
0.9.8.4
9398
---------------------
9499
- 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>
95100

0 commit comments

Comments
 (0)