-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MLB games not working #8
Comments
I double checked that the API is returning all MLB games via curl:
With 2933 games
As I'll likely look to update this for #9 I'll have check to see that the MLB example works. |
@ClassicCreation can you confirm that David's update (v 1.1.1) fixes this issue? |
Confirmed thanks so much guys! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following function used to work, but now is not returning the array of MLB games. The exact same function currently works for NFL (replacing season_id with 'nfl-2016-2017' and 'baseball' with 'football')
var getAllMlbGames = function () {
var _alMlbGames=[];
var params = {
season_id: "mlb-2016"
};
stattleship.games('baseball', 'mlb', params).then(function (games) {
_allMlbGames = games;
});
};
The text was updated successfully, but these errors were encountered: