fix attachment duplicate checking, bump version
This commit is contained in:
parent
171461be53
commit
f27bbf9e8c
@ -1,8 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="org.fox.ttrss"
|
package="org.fox.ttrss"
|
||||||
android:versionCode="110"
|
android:versionCode="111"
|
||||||
android:versionName="0.8.9" >
|
android:versionName="0.8.10" >
|
||||||
|
|
||||||
<uses-sdk
|
<uses-sdk
|
||||||
android:minSdkVersion="8"
|
android:minSdkVersion="8"
|
||||||
|
@ -2,6 +2,7 @@ package org.fox.ttrss;
|
|||||||
|
|
||||||
import java.net.MalformedURLException;
|
import java.net.MalformedURLException;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
|
import java.net.URLEncoder;
|
||||||
import java.text.SimpleDateFormat;
|
import java.text.SimpleDateFormat;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
@ -260,7 +261,7 @@ public class ArticleFragment extends Fragment {
|
|||||||
getActivity(), android.R.layout.simple_spinner_item, spinnerArray);
|
getActivity(), android.R.layout.simple_spinner_item, spinnerArray);
|
||||||
|
|
||||||
spinnerArrayAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
|
spinnerArrayAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
|
||||||
|
|
||||||
for (Attachment a : m_article.attachments) {
|
for (Attachment a : m_article.attachments) {
|
||||||
if (a.content_type != null && a.content_url != null) {
|
if (a.content_type != null && a.content_url != null) {
|
||||||
|
|
||||||
@ -268,20 +269,19 @@ public class ArticleFragment extends Fragment {
|
|||||||
URL url = new URL(a.content_url.trim());
|
URL url = new URL(a.content_url.trim());
|
||||||
String strUrl = url.toString().trim();
|
String strUrl = url.toString().trim();
|
||||||
|
|
||||||
String regex = String.format("<img.*?src=[\"']%1$[\"']", strUrl);
|
String regex = String.format(".*?<img.*src=[\"']%1$s[\"'].*", strUrl);
|
||||||
|
|
||||||
if (a.content_type.indexOf("image") != -1 && !articleContent.matches(regex)) {
|
if (a.content_type.indexOf("image") != -1 && !articleContent.replaceAll("[\r\n]", "").matches(regex)) {
|
||||||
content += "<p><img src=\"" + strUrl.replace("\"", "\\\"") + "\"></p>";
|
content += "<p><img src=\"" + strUrl.replace("\"", "\\\"") + "\"></p>";
|
||||||
}
|
}
|
||||||
|
|
||||||
spinnerArray.add(a);
|
|
||||||
|
|
||||||
} catch (MalformedURLException e) {
|
} catch (MalformedURLException e) {
|
||||||
//
|
//
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
spinnerArray.add(a);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user