5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-15 00:19:30 +08:00

fix err message

This commit is contained in:
popaprozac 2025-03-19 21:51:57 -07:00
parent d98f528734
commit bd857385d3

View File

@ -256,7 +256,7 @@ func (ns *Service) RemoveNotificationCategory(categoryId string) error {
return nil return nil
case <-ctx.Done(): case <-ctx.Done():
cleanupChannel(id) cleanupChannel(id)
return fmt.Errorf("category registration timed out: %w", ctx.Err()) return fmt.Errorf("category removal timed out: %w", ctx.Err())
} }
} }