hopefully fix Attachment deserialization

This commit is contained in:
Andrew Dolgov 2012-02-07 08:21:55 +03:00
parent 1f12ff12cd
commit a121c55e96
2 changed files with 3 additions and 3 deletions

View File

@ -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" />

View File

@ -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")