Skip to content

Commit

Permalink
Merge branch 'release/1.1.6.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
sbearcsiro committed Jun 21, 2021
2 parents cec0edc + dd65a46 commit 2c61929
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {
}


version "1.1.6"
version "1.1.6.1"

group "au.org.ala"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -701,6 +701,10 @@ class ImageController {

def viewer() {
def imageInstance = imageService.getImageFromParams(params)
if (!imageInstance) {
response.sendError(404)
return
}
if (grailsApplication.config.analytics.trackLargeViewer.toBoolean()) {
analyticsService.sendAnalytics(imageInstance, 'imagelargeviewer', request.getHeader("User-Agent"))
}
Expand Down

0 comments on commit 2c61929

Please sign in to comment.