Skip to content

Commit

Permalink
Mobileapps 1700 (#217)
Browse files Browse the repository at this point in the history
* fixed sub folder search
  • Loading branch information
aman-alfresco authored Feb 16, 2023
1 parent b42f72f commit 2724975
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ class OfflineRepository(val session: Session = SessionManager.requireSession) {
box.query()
.apply {
contains(Entry_.name, name, StringOrder.CASE_INSENSITIVE)
equal(Entry_.isOffline, true)
notEqual(Entry_.offlineStatus, OfflineStatus.UNDEFINED.value(), StringOrder.CASE_SENSITIVE)
equal(Entry_.isUpload, false)
}.order(Entry_.name).build().find()

internal fun fetchTopLevelOfflineEntries() =
Expand Down

0 comments on commit 2724975

Please sign in to comment.