Skip to content

Commit

Permalink
Merge pull request #17 from murray18/bug/P12P--fix-issue-with-statici…
Browse files Browse the repository at this point in the history
…s-endpoint

Fix syntax for regex replacement pattern
  • Loading branch information
Ken Gilbert authored Dec 5, 2022
2 parents b9e32fa + afab41e commit 91f819e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "node-sportsdata",
"description": "A wrapper for the SportsData API",
"version": "0.4.4",
"version": "0.4.5",
"homepage": "https://github.com/pac12/node-sportsdata",
"author": {
"name": "PAC-12",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/v7/v7.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class V7 extends SportApi
this.getResource '/seasons/%(year)s/%(season)s/standings/season.xml', params, callback

getGameStatistics: (params, callback) ->
this.getResource '/games/%(gameId)s/statistics.xml', params, callback
this.getResource '/games/%(gameId)s/%statistics.xml', params, callback

getPlayByPlay: (params, callback) ->
this.getResource '/games/%(gameId)s/pbp.xml', params, callback
Expand Down

0 comments on commit 91f819e

Please sign in to comment.