File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
src/main/java/me/ash/reader/domain/service Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 3535-keep class com.rometools.** { *; }
3636
3737# Provider API
38- -keep class me.ash.reader.infrastructure.rss.provider. ** { *; }
38+ -keep class me.ash.reader.infrastructure.** { *; }
Original file line number Diff line number Diff line change @@ -147,7 +147,11 @@ abstract class AbstractRssRepository(
147147 val latest = articleDao.queryLatestByFeedId(context.currentAccountId, feed.id)
148148 val articles = rssHelper.queryRssXml(feed, latest?.link)
149149 if (feed.icon == null ) {
150- rssHelper.queryRssIcon(feedDao, feed)
150+ try {
151+ rssHelper.queryRssIcon(feedDao, feed)
152+ } catch (e: Exception ) {
153+ Log .i(" RLog" , " queryRssIcon is failed: ${e.message} " )
154+ }
151155 }
152156 return FeedWithArticle (
153157 feed = feed.apply { isNotification = feed.isNotification && articles.isNotEmpty() },
You can’t perform that action at this time.
0 commit comments