Skip to content

Commit

Permalink
Pointing the inning scores fetching at the correct file.
Browse files Browse the repository at this point in the history
  • Loading branch information
ecopony committed Feb 5, 2013
1 parent d2e108c commit 626eb95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ object LocalCachingFetchStrategy extends FetchStrategy {
}

def fetchInningScores(date: Date, team: String, gid: String = null) = {
val inningScores = XML.loadString(_http(url(inningsUrl(date, team, gid)) as_str))
val inningScores = XML.loadString(_http(url(inningScoresUrl(date, team, gid)) as_str))
cacheContent(date, gameDirectoryPath(date, team, gid), "inning/inning_Scores.xml", inningScores)
inningScores
}
Expand Down

0 comments on commit 626eb95

Please sign in to comment.