Browse Source

Don't threat messages that are part of a thread as a MUC subject, as specified in https://xmpp.org/extensions/xep-0045.html#subject-mod

feature/templater
Timothée Jaussoin 2 months ago
parent
commit
e0e0881c6b
  1. 1
      app/Conference.php

1
app/Conference.php

@ -249,6 +249,7 @@ class Conference extends Model
->jid($this->conference)
->whereNotNull('subject')
->whereNull('body')
->whereNull('thread')
->where('type', 'groupchat')
->orderBy('published', 'desc')
->first();

Loading…
Cancel
Save