Unverified Commit 643d0550 authored by Ray Schamp's avatar Ray Schamp Committed by GitHub

Merge pull request #3663 from chrisgarrity/language-cookie-fix2

Ensure that the old scratchlanguage cookie is removed if it exists.
parents ffc54540 c95d0872
...@@ -18,6 +18,17 @@ const jar = require('./lib/jar'); ...@@ -18,6 +18,17 @@ const jar = require('./lib/jar');
if (['pt', 'pt-pt', 'PT', 'PT-PT'].indexOf(obj) !== -1) { if (['pt', 'pt-pt', 'PT', 'PT-PT'].indexOf(obj) !== -1) {
obj = 'pt-br'; // default Portuguese users to Brazilian Portuguese due to our user base. Added in 2.2.5. obj = 'pt-br'; // default Portuguese users to Brazilian Portuguese due to our user base. Added in 2.2.5.
} }
} else {
// delete the old cookie (just hostname) by setting it to null and expiring in the past
/* eslint-disable max-len */
document.cookie = `scratchlanguage=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; domain=${window.location.hostname}`;
/* eslint-enable max-len */
// create the new cookie
let opts = {};
if (window.location.hostname !== 'localhost') {
opts = {domain: `.${window.location.hostname}`};
}
jar.set('scratchlanguage', obj, opts);
} }
return obj; return obj;
}; };
......
...@@ -626,7 +626,11 @@ class Preview extends React.Component { ...@@ -626,7 +626,11 @@ class Preview extends React.Component {
); );
} }
handleSetLanguage (locale) { handleSetLanguage (locale) {
jar.set('scratchlanguage', locale); let opts = {};
if (window.location.hostname !== 'localhost') {
opts = {domain: `.${window.location.hostname}`};
}
jar.set('scratchlanguage', locale, opts);
} }
handleUpdateProjectId (projectId, callback) { handleUpdateProjectId (projectId, callback) {
this.setState({projectId: projectId}, () => { this.setState({projectId: projectId}, () => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment