hopefully fix Attachment deserialization
This commit is contained in:
parent
1f12ff12cd
commit
a121c55e96
@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.fox.ttrss"
|
||||
android:versionCode="61"
|
||||
android:versionName="0.4.13" >
|
||||
android:versionCode="62"
|
||||
android:versionName="0.4.14" >
|
||||
|
||||
<uses-sdk android:minSdkVersion="7" />
|
||||
|
||||
|
@ -70,7 +70,7 @@ public class Article implements Parcelable {
|
||||
content = in.readString();
|
||||
|
||||
attachments = new ArrayList<Attachment>();
|
||||
in.readList(attachments, null);
|
||||
in.readList(attachments, Attachment.class.getClassLoader());
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
|
Loading…
Reference in New Issue
Block a user