1
1
Fork 0
mirror of https://github.com/mjl-/mox.git synced 2025-04-21 21:40:01 +03:00

webmail: Don't abort SSE connection when a metadata/annotation change is made (broadcasted)

Missing case...
This commit is contained in:
Mechiel Lukkien 2025-03-16 14:02:45 +01:00
parent 26793e407a
commit 719dc2bee1
No known key found for this signature in database

View file

@ -962,6 +962,9 @@ func serveEvents(ctx context.Context, log mlog.Log, accountPath string, w http.R
case store.ChangeAddSubscription:
// Webmail does not care about subscriptions.
case store.ChangeAnnotation:
// Nothing.
default:
panic(fmt.Sprintf("missing case for change %T", c))
}