- 🇧🇷Brazil gfbarbosaThe same occurs when a formatted field (for example with CKEditor) is loaded, the ajax response refreshes the page and removes the CKEditor from the field. 
The Ajax request on opigno_notification here causes a refresh every minute that conflicts with Moxtra and refreshes the video meet
// Update messages. Run every minute and refresh.
      if (typeof url !== 'undefined' && !$('body').hasClass('user-messages-auto-check')) {
        setInterval(function () {
          Drupal.ajax({
            type: 'POST',
            url: url,
            async: false,
          }).execute();
        }, 1000 * 60 );
        $('body').addClass('user-messages-auto-check');
      }
Have both notifications and Moxtra enabled, go to a meeting room and wait 1 minute and there will be a refresh
I'll see if I can provide a MR
Needs work
3.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
The same occurs when a formatted field (for example with CKEditor) is loaded, the ajax response refreshes the page and removes the CKEditor from the field.