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:
parent
26793e407a
commit
719dc2bee1
1 changed files with 3 additions and 0 deletions
|
@ -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))
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue