mirror of
https://github.com/matrix-construct/construct
synced 2024-10-31 19:08:59 +01:00
modules/m_receipt: Fix missing prop_mask field.
modules/m_presence: Fix missing prop_mask field.
This commit is contained in:
parent
9bf174d84b
commit
8a9b06c67e
2 changed files with 2 additions and 0 deletions
|
@ -289,6 +289,7 @@ try
|
|||
m::vm::copts opts;
|
||||
opts.edu = true;
|
||||
opts.prop_mask.reset(); // Clear all PDU properties
|
||||
opts.prop_mask.set("origin");
|
||||
opts.notify_clients = false; // Client /sync already saw the ircd.presence
|
||||
|
||||
// Execute
|
||||
|
|
|
@ -387,6 +387,7 @@ try
|
|||
m::vm::copts opts;
|
||||
opts.edu = true;
|
||||
opts.prop_mask.reset();
|
||||
opts.prop_mask.set("origin");
|
||||
|
||||
// Don't need to notify clients, the /sync system understood the
|
||||
// `ircd.read` directly. The federation sender is what we're hitting here.
|
||||
|
|
Loading…
Reference in a new issue