Skip to content

Commit

Permalink
Fix to the getAlbum method.
Browse files Browse the repository at this point in the history
  • Loading branch information
acampbell3000 committed Nov 21, 2010
1 parent f956916 commit 103d20f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Potential improvements:

Release notes 0.6.7 (TBA)
- Update to OAuth plug-in 0.10.
- Small fix to the getAlbum method on the PicasaService.

Release notes 0.6.6 (20th August, 2010)
- Unit tests for the PicasaCommentService.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ class PicasaService implements InitializingBean {
final def errorMessage = "Unable to retrieve your Google Picasa Web Album. " +
"The provided ID was invalid. (albumId=$albumId, showAll=$showAll)"

log.error(errorMessage, ex)
throw new PicasaServiceException(errorMessage, ex)
log.error(errorMessage)
throw new PicasaServiceException(errorMessage)
}

// Generate cache key
Expand Down

0 comments on commit 103d20f

Please sign in to comment.