Skip to content

Commit e67ab85

Browse files
committed
bump v11.1.7
1 parent 346b366 commit e67ab85

3 files changed

Lines changed: 77 additions & 77 deletions

File tree

package-lock.json

Lines changed: 73 additions & 76 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tasmota-esp-web-tools",
3-
"version": "11.1.6",
3+
"version": "11.1.7",
44
"description": "Web tools for ESP devices",
55
"main": "dist/install-button.js",
66
"repository": {

src/util/cors-proxy.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ export const corsProxyFetch = async (
3333
url: string,
3434
options?: RequestInit,
3535
): Promise<Response> => {
36+
// Clean the URL - remove whitespace and newlines
37+
url = url.trim();
38+
3639
if (needsCorsProxy(url)) {
3740
// Try direct fetch first
3841
try {

0 commit comments

Comments
 (0)