maxifelix / langSelector

grails-lang-selector plugin
Other
0 stars 4 forks source link

ClassCastException in selector taglib when there is locale in session #6

Closed bdbogjoe closed 10 years ago

bdbogjoe commented 10 years ago
    Locale selected = session["org.springframework.web.servlet.i18n.SessionLocaleResolver.LOCALE"]
    // if not set in session, get it from attrs
    selected = selected ? selected : defaultLang?.trim() //FIXME

cannot cast defaultLang to Locale

stokito commented 10 years ago

I fixed that, thanks :-)

bdbogjoe commented 10 years ago

Welcome ;)