Fix reply options
Whoever wrote Bot.reply forgot to pass on options it received for replies!
This commit is contained in:
parent
f667a7a621
commit
0e9f7d6881
1 changed files with 1 additions and 1 deletions
|
@ -379,7 +379,7 @@ module Ebooks
|
||||||
end
|
end
|
||||||
|
|
||||||
log "Replying to @#{ev.user.screen_name} with: #{meta.reply_prefix + text}"
|
log "Replying to @#{ev.user.screen_name} with: #{meta.reply_prefix + text}"
|
||||||
tweet = twitter.update(meta.reply_prefix + text, in_reply_to_status_id: ev.id)
|
tweet = twitter.update(meta.reply_prefix + text, opts.merge({in_reply_to_status_id: ev.id}))
|
||||||
conversation(tweet).add(tweet)
|
conversation(tweet).add(tweet)
|
||||||
tweet
|
tweet
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue