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

Commit ba70dc5

Browse files
Merge pull request #1339 from serby/patch-1
Fixing URL
2 parents b70cecf + 950550b commit ba70dc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scripts/npm.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Select = require("soupselect").select
2020
module.exports = (robot) ->
2121
robot.respond /npm version (.*)/i, (msg) ->
2222
packageName = escape(msg.match[1])
23-
msg.http("https://npmjs.org/package/#{packageName}").get() (err, res, body) ->
23+
msg.http("https://www.npmjs.org/package/#{packageName}").get() (err, res, body) ->
2424
if err
2525
msg.send "I tried talking to npmjs.org, but it seems to be ignoring me."
2626
else

0 commit comments

Comments
 (0)