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
08142dce
Commit
08142dce
authored
Aug 07, 2018
by
Leonardo Aramaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Show recent custom emojis only if it pertains to the current server
parent
8ee1100c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
EmojiRepository.kt
...rc/main/java/chat/rocket/android/emoji/EmojiRepository.kt
+11
-1
No files found.
emoji/src/main/java/chat/rocket/android/emoji/EmojiRepository.kt
View file @
08142dce
...
@@ -214,7 +214,17 @@ object EmojiRepository {
...
@@ -214,7 +214,17 @@ object EmojiRepository {
val
recentShortnames
=
recentsJson
.
keys
()
val
recentShortnames
=
recentsJson
.
keys
()
for
(
i
in
0
until
len
)
{
for
(
i
in
0
until
len
)
{
val
shortname
=
recentShortnames
.
next
()
val
shortname
=
recentShortnames
.
next
()
allEmojis
.
firstOrNull
{
it
.
shortname
==
shortname
}
?.
let
{
allEmojis
.
firstOrNull
{
if
(
it
.
shortname
==
shortname
)
{
if
(
it
.
isCustom
())
{
return
@firstOrNull
getCurrentServerUrl
()
?.
let
{
url
->
it
.
url
?.
startsWith
(
url
)
}
?:
false
}
return
@firstOrNull
true
}
false
}
?.
let
{
val
useCount
=
recentsJson
.
getInt
(
it
.
shortname
)
val
useCount
=
recentsJson
.
getInt
(
it
.
shortname
)
list
.
add
(
it
.
copy
(
count
=
useCount
))
list
.
add
(
it
.
copy
(
count
=
useCount
))
}
}
...
...
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