From 8a359cd3fb505fbc63b049c45aa0e88fd9aac08a Mon Sep 17 00:00:00 2001
From: ubermanu <e.vodor@gmail.com>
Date: Wed, 17 Mar 2021 14:31:26 +0100
Subject: [PATCH] bugfix: remove affiliation check

---
 src/plugins/converse-rai.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/plugins/converse-rai.js b/src/plugins/converse-rai.js
index b7a1b25..7ad059d 100644
--- a/src/plugins/converse-rai.js
+++ b/src/plugins/converse-rai.js
@@ -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();
-- 
GitLab