Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
AloqaIM-Android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
AloqaIM-Android
Commits
fb9c397b
Commit
fb9c397b
authored
Sep 06, 2018
by
Kiryl Vashyla
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PR #1615 minor change
parent
6df94252
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
ChatRoomAdapter.kt
...a/chat/rocket/android/chatroom/adapter/ChatRoomAdapter.kt
+3
-4
No files found.
app/src/main/java/chat/rocket/android/chatroom/adapter/ChatRoomAdapter.kt
View file @
fb9c397b
...
@@ -167,14 +167,13 @@ class ChatRoomAdapter(
...
@@ -167,14 +167,13 @@ class ChatRoomAdapter(
}
}
return
@filter
(
matchedIndex
<
0
)
return
@filter
(
matchedIndex
<
0
)
}
}
val
minAdditionDate
=
d
ataSet
.
minBy
{
it
.
message
.
timestamp
}
?:
return
val
minAdditionDate
=
filteredD
ataSet
.
minBy
{
it
.
message
.
timestamp
}
?:
return
//---In the most cases we will just add new elements to the top of messages heap
//---In the most cases we will just add new elements to the top of messages heap
if
(
minAdditionDate
.
message
.
timestamp
>
this
.
dataSet
[
0
].
message
.
timestamp
)
{
if
(
minAdditionDate
.
message
.
timestamp
>
this
.
dataSet
[
0
].
message
.
timestamp
)
{
this
.
dataSet
.
addAll
(
0
,
d
ataSet
)
this
.
dataSet
.
addAll
(
0
,
filteredD
ataSet
)
notifyItemRangeInserted
(
0
,
d
ataSet
.
size
)
notifyItemRangeInserted
(
0
,
filteredD
ataSet
.
size
)
return
return
}
}
//---Else branch: merging messages---
//---Else branch: merging messages---
//---We are inserting new received elements into set. Sort them by time+type and show
//---We are inserting new received elements into set. Sort them by time+type and show
if
(
filteredDataSet
.
isEmpty
())
return
if
(
filteredDataSet
.
isEmpty
())
return
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment