Skip to content

Commit

Permalink
fix(polls): fix mistyped variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
anna328p committed Dec 26, 2023
1 parent 7dff6e3 commit f4ccc7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/qbot/helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def to_word(num)
def to_emoji(num)
if num.between?(0, 9)
# digit + Variation Selector-16 + Combining Enclosing Keycap
"#{digit}\uFE0F\u20E3"
"#{num}\uFE0F\u20E3"
elsif num == 10
# Keycap Digit Ten emoji
"\u{1F51F}"
Expand Down
2 changes: 1 addition & 1 deletion lib/qbot/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ class << self
end
end

QBot.version = '8.0.0'
QBot.version = '8.1.0'

0 comments on commit f4ccc7d

Please sign in to comment.