Skip to content
This repository was archived by the owner on Jun 8, 2023. It is now read-only.

Updated web service url hakanensari/oblique.io#1 #1656

Merged
merged 1 commit into from
Aug 12, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/scripts/oblique.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
module.exports = (robot) ->
robot.respond /.*strategy/i, (msg) ->
mentions = msg.message.text.match(/(@\w+)/g)
robot.http('http://oblique.io')
robot.http('http://obliqueio.herokuapp.com')
.get() (err, res, body) ->
strategy = JSON.parse body
strategy = "#{mentions.join(', ')}: #{strategy}" if mentions
Expand Down