Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
solid-xmpp-chat
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Components
solid-xmpp-chat
Merge requests
!113
History, Reply to messages and RAI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
History, Reply to messages and RAI
beta
into
master
Overview
0
Commits
39
Pipelines
7
Changes
1
Merged
Emmanuel Vodor
requested to merge
beta
into
master
4 years ago
Overview
0
Commits
39
Pipelines
7
Changes
1
Expand
Contains
History loading various fixes
Reply button on messages (mucs and chats)
Replaced the original RAI implementation with the converse one
Closes
#262 (closed)
Edited
4 years ago
by
Emmanuel Vodor
0
0
Merge request reports
Viewing commit
8743af11
Prev
Next
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
8743af11
bugfix: fix conversation holes in mucs
· 8743af11
ubermanu
authored
4 years ago
src/plugins/sib-history-improved.js
+
1
−
1
Options
@@ -70,7 +70,7 @@ converse.plugins.add('sib-history-improved', {
log
.
debug
(
`Chatbox needs more messages, count:
${
counter
}
`
);
const
is_groupchat
=
data
.
chatbox
.
get
(
'
type
'
)
===
converse
.
CHATROOMS_TYPE
;
const
is_groupchat
=
data
.
chatbox
.
get
(
'
type
'
)
===
_
converse
.
CHATROOMS_TYPE
;
const
oldest_message
=
messages
[
0
]
||
null
;
if
(
oldest_message
)
{
Loading