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
7
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
Compare
version 6
version 6
f7f7e29c
4 years ago
version 5
14c1699e
4 years ago
version 4
c337afe3
4 years ago
version 3
4df52a35
4 years ago
version 2
d4548a8b
4 years ago
version 1
e42a84c9
4 years ago
master (base)
and
latest version
latest version
22b64d40
39 commits,
4 years ago
version 6
f7f7e29c
37 commits,
4 years ago
version 5
14c1699e
35 commits,
4 years ago
version 4
c337afe3
32 commits,
4 years ago
version 3
4df52a35
31 commits,
4 years ago
version 2
d4548a8b
19 commits,
4 years ago
version 1
e42a84c9
17 commits,
4 years ago
Show latest version
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/plugins/converse-rai.js
+
2
−
2
Options
@@ -25,7 +25,7 @@ converse.plugins.add('converse-rai', {
if
(
this
.
get
(
'
hidden
'
)
&&
conn_status
===
converse
.
ROOMSTATUS
.
ENTERED
&&
api
.
settings
.
get
(
'
muc_subscribe_to_rai
'
)
&&
this
.
getOwnAffiliation
()
!==
'
none
'
//
&& this.getOwnAffiliation() !== 'none'
)
{
this
.
sendMarkerForLastMessage
(
'
received
'
,
true
);
await
this
.
leave
();
@@ -47,7 +47,7 @@ converse.plugins.add('converse-rai', {
if
(
this
.
get
(
'
hidden
'
)
&&
conn_status
===
converse
.
ROOMSTATUS
.
ENTERED
&&
api
.
settings
.
get
(
'
muc_subscribe_to_rai
'
)
&&
this
.
getOwnAffiliation
()
!==
'
none
'
//
&& this.getOwnAffiliation() !== 'none'
)
{
await
this
.
leave
();
await
this
.
close
();
Loading