correct architectural goof where conference aliases had global scope instead of community scope (untested)

This commit is contained in:
2026-04-18 21:13:00 -05:00
parent 70dcf82234
commit 1348d0225f
11 changed files with 103 additions and 67 deletions
+2 -2
View File
@@ -470,7 +470,7 @@ func NukeMessage(ctxt ui.AmContext) (string, any) {
}
// Set up to display the message box.
link, err := hdrs[0].Link(ctxt.Ctx(), "community")
link, err := hdrs[0].Link(ctxt.Ctx(), ctxt.CurrentCommunity().Id, "community")
if err != nil {
return "error", err
}
@@ -528,7 +528,7 @@ func PruneMessageAttachment(ctxt ui.AmContext) (string, any) {
}
// Set up to display the message box.
link, err := hdrs[0].Link(ctxt.Ctx(), "community")
link, err := hdrs[0].Link(ctxt.Ctx(), ctxt.CurrentCommunity().Id, "community")
if err != nil {
return "error", err
}