Skip to content

Commit

Permalink
Unused return removed from method onFooterClicked
Browse files Browse the repository at this point in the history
  • Loading branch information
mhf1998 committed Jul 13, 2023
1 parent e1e6e3e commit aeb4472
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -498,8 +498,8 @@ class MessageListFragment :
val folderId = currentFolder.databaseId
messagingController.loadMoreMessages(account, folderId)
} else if (isRemoteSearch) {
val additionalSearchResults = extraSearchResults ?: return
if (additionalSearchResults.isEmpty()) return
val additionalSearchResults = extraSearchResults
if (additionalSearchResults.isNullOrEmpty()) return

val loadSearchResults: List<String>

Expand Down

0 comments on commit aeb4472

Please sign in to comment.