1
0
Fork 0
mirror of https://forgejo.ellis.link/continuwuation/continuwuity.git synced 2025-09-30 18:42:05 +00:00

fix(hydra): Fix unknown join rule processing

This commit is contained in:
nexy7574 2025-09-13 15:49:44 +01:00
parent 2e252f0841
commit b00f6ffbed
No known key found for this signature in database

View file

@ -814,7 +814,11 @@ where
} else {
true
},
| _ => true,
| JoinRule::Public => true,
| _ => {
warn!("Unknown join rule doesn't allow joining");
false
},
}
}
},