I am trying to get the User Agent header in a grails partial, and if the User Agent is Chrome, display a notification to download a chrome extension.
This is some code of mine that fails to achieve this:
<% def useragent = request.getHeader("User Agent") %>
${useragent + 'asdf'}
Shouldn’t that be:
With a hyphen?