Skip to content

Commit

Permalink
Merge branch 'master' of github.com:claudiowilson/LeagueJS
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiowilson committed Mar 24, 2015
2 parents a874ff9 + 69e8e70 commit f26da62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/lolapi.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@
historyOptions += '&rankedQueues=' + options.rankedQueues.join();
}
if (options.beginIndex) {
historyOptions += '&version=' + options.beginIndex;
historyOptions += '&beginIndex=' + options.beginIndex;
}
if (options.endIndex) {
historyOptions += '&locale=' + options.endIndex;
historyOptions += '&endIndex=' + options.endIndex;
}
historyOptions += '&';
}
Expand Down

0 comments on commit f26da62

Please sign in to comment.