From a579e67057662d9fa2c0ef546eab532283fa1f7e Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 12 Apr 2025 20:08:42 +0200 Subject: [PATCH] We are not using the parameter --- app/models/collection/broadcastable.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/collection/broadcastable.rb b/app/models/collection/broadcastable.rb index 82d548f33..f3f2f398e 100644 --- a/app/models/collection/broadcastable.rb +++ b/app/models/collection/broadcastable.rb @@ -3,6 +3,6 @@ module Collection::Broadcastable included do broadcasts_refreshes - broadcasts_refreshes_to ->(collection) { :collections } + broadcasts_refreshes_to ->(_) { :collections } end end