This is an automated email from the ASF dual-hosted git repository.
rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new dbd1723 iterate over the entries
dbd1723 is described below
commit dbd1723c998fea5c40f3b51a15804c46eff03b50
Author: Sam Ruby <[email protected]>
AuthorDate: Thu Apr 9 16:07:35 2020 -0400
iterate over the entries
---
www/board/agenda/views/models/chat.js.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www/board/agenda/views/models/chat.js.rb
b/www/board/agenda/views/models/chat.js.rb
index 8efd793..de604de 100644
--- a/www/board/agenda/views/models/chat.js.rb
+++ b/www/board/agenda/views/models/chat.js.rb
@@ -138,7 +138,7 @@ class Chat
# build an index of the 'before' drafts
index = {}
- before.drafts.each do |attach, item|
+ before.drafts.each_pair do |attach, item|
index[item.project] = item
end