nuxt-i18n
Advanced tools
Comparing version 2.9.1 to 2.9.2
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="2.9.2"></a> | ||
## [2.9.2](https://github.com/nuxt-community/nuxt-i18n/compare/v2.9.1...v2.9.2) (2018-04-06) | ||
### Bug Fixes | ||
* Fix redirection based on browser language ([64ff3ce](https://github.com/nuxt-community/nuxt-i18n/commit/64ff3ce)), closes [#65](https://github.com/nuxt-community/nuxt-i18n/issues/65) | ||
<a name="2.9.1"></a> | ||
@@ -7,0 +17,0 @@ ## [2.9.1](https://github.com/nuxt-community/nuxt-i18n/compare/v2.9.0...v2.9.1) (2018-03-26) |
@@ -37,3 +37,3 @@ import cookie from 'cookie' | ||
// Redirect | ||
const routeName = route && route.name ? app.getRouteBaseName(route.name) : 'index'; | ||
const routeName = route && route.name ? app.getRouteBaseName(route) : 'index'; | ||
if (browserLocale !== app.i18n.locale && localeCodes.indexOf(browserLocale) !== -1) { | ||
@@ -40,0 +40,0 @@ app.i18n.locale = browserLocale |
{ | ||
"name": "nuxt-i18n", | ||
"version": "2.9.1", | ||
"version": "2.9.2", | ||
"description": "i18n for Nuxt", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
27155