mirror of
https://github.com/thewesker/twitter_ebooks.git
synced 2025-12-20 04:11:08 -05:00
Fix reply options
Whoever wrote Bot.reply forgot to pass on options it received for replies!
This commit is contained in:
@@ -379,7 +379,7 @@ module Ebooks
|
||||
end
|
||||
|
||||
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)
|
||||
tweet
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user