From 8e5857eb125d899b44d4659ec235fd6f1fc86159 Mon Sep 17 00:00:00 2001 From: Jonathan Barber Date: Wed, 10 Apr 2019 14:18:11 +0100 Subject: [PATCH] Fix symbol for reaction view example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 313d2dd..2d071db 100644 --- a/README.md +++ b/README.md @@ -626,7 +626,7 @@ class MyView < SlackRubyBot::MVC::View::Base def react_thumbsup client.web_client.reactions_add( - name: :thumbs_up, + name: :thumbsup, channel: data.channel, timestamp: data.ts, as_user: true) @@ -634,7 +634,7 @@ class MyView < SlackRubyBot::MVC::View::Base def react_thumbsdown client.web_client.reactions_remove( - name: :thumbs_up, + name: :thumbsup, channel: data.channel, timestamp: data.ts, as_user: true)