Skip to content

Commit

Permalink
优化
Browse files Browse the repository at this point in the history
  • Loading branch information
gedoor committed May 21, 2022
1 parent 57a0f7c commit 5868561
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/src/main/java/io/legado/app/data/entities/BookSource.kt
Original file line number Diff line number Diff line change
Expand Up @@ -192,11 +192,15 @@ data class BookSource(
&& bookSourceType == source.bookSourceType
&& equal(bookUrlPattern, source.bookUrlPattern)
&& equal(bookSourceComment, source.bookSourceComment)
&& customOrder == source.customOrder
&& enabled == source.enabled
&& enabledExplore == source.enabledExplore
&& enabledCookieJar == source.enabledCookieJar
&& equal(concurrentRate, source.concurrentRate)
&& equal(header, source.header)
&& loginUrl == source.loginUrl
&& equal(loginUrl, source.loginUrl)
&& equal(loginUi, source.loginUi)
&& equal(loginCheckJs, source.loginCheckJs)
&& equal(exploreUrl, source.exploreUrl)
&& equal(searchUrl, source.searchUrl)
&& getSearchRule() == source.getSearchRule()
Expand Down
10 changes: 10 additions & 0 deletions app/src/main/java/io/legado/app/data/entities/RssSource.kt
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,16 @@ data class RssSource(
&& equal(sourceIcon, source.sourceIcon)
&& enabled == source.enabled
&& equal(sourceGroup, source.sourceGroup)
&& enabledCookieJar == source.enabledCookieJar
&& equal(sourceComment, source.sourceComment)
&& equal(concurrentRate, source.concurrentRate)
&& equal(header, source.header)
&& equal(loginUrl, source.loginUrl)
&& equal(loginUi, source.loginUi)
&& equal(loginCheckJs, source.loginCheckJs)
&& equal(sortUrl, source.sortUrl)
&& singleUrl == source.singleUrl
&& articleStyle == source.articleStyle
&& equal(ruleArticles, source.ruleArticles)
&& equal(ruleNextPage, source.ruleNextPage)
&& equal(ruleTitle, source.ruleTitle)
Expand Down

0 comments on commit 5868561

Please sign in to comment.