mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-16 12:30:11 +01:00
Merge pull request #459 from SethFalco/fix-query-params
fix: stop double encoding query params
This commit is contained in:
commit
57cfdec439
@ -206,7 +206,7 @@ document.addEventListener('DOMContentLoaded', function(){
|
|||||||
|
|
||||||
this.updateQueryParam('source', this.sourceLang)
|
this.updateQueryParam('source', this.sourceLang)
|
||||||
this.updateQueryParam('target', this.targetLang)
|
this.updateQueryParam('target', this.targetLang)
|
||||||
this.updateQueryParam('q', encodeURI(this.inputText))
|
this.updateQueryParam('q', this.inputText)
|
||||||
|
|
||||||
if (this.timeout) clearTimeout(this.timeout);
|
if (this.timeout) clearTimeout(this.timeout);
|
||||||
this.timeout = null;
|
this.timeout = null;
|
||||||
@ -470,7 +470,7 @@ function handleLangsResponse(self, response) {
|
|||||||
const defaultText = self.getQueryParam("q")
|
const defaultText = self.getQueryParam("q")
|
||||||
|
|
||||||
if (defaultText) {
|
if (defaultText) {
|
||||||
self.inputText = decodeURI(defaultText)
|
self.inputText = defaultText
|
||||||
self.handleInput(new Event('none'))
|
self.handleInput(new Event('none'))
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user