mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2025-07-09 03:04:26 -04:00
fix: stop double encoding query params
This commit is contained in:
parent
abc77002e2
commit
97dcb1decc
@ -206,7 +206,7 @@ document.addEventListener('DOMContentLoaded', function(){
|
||||
|
||||
this.updateQueryParam('source', this.sourceLang)
|
||||
this.updateQueryParam('target', this.targetLang)
|
||||
this.updateQueryParam('q', encodeURI(this.inputText))
|
||||
this.updateQueryParam('q', this.inputText)
|
||||
|
||||
if (this.timeout) clearTimeout(this.timeout);
|
||||
this.timeout = null;
|
||||
@ -464,7 +464,7 @@ function handleLangsResponse(self, response) {
|
||||
const defaultText = self.getQueryParam("q")
|
||||
|
||||
if (defaultText) {
|
||||
self.inputText = decodeURI(defaultText)
|
||||
self.inputText = defaultText
|
||||
self.handleInput(new Event('none'))
|
||||
}
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user