File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ app.get("/qr/png/:id", async (c) => {
7272
7373app . get ( "/qr/raw/url/:encoded_url" , ( c ) => {
7474 const logger = createLogger ( "qr-render-raw" ) ;
75- const encodedUrl = c . req . param ( "encoded_url" ) . trim ( ) . toLowerCase ( ) ;
75+ const encodedUrl = c . req . param ( "encoded_url" ) . trim ( ) ;
7676
7777 const url = decodeURIComponent ( encodedUrl ) ;
7878
@@ -84,7 +84,7 @@ app.get("/qr/raw/url/:encoded_url", (c) => {
8484
8585app . get ( "/qr/svg/url/:encoded_url" , ( c ) => {
8686 const logger = createLogger ( "qr-render-svg" ) ;
87- const encodedUrl = c . req . param ( "encoded_url" ) . trim ( ) . toLowerCase ( ) ;
87+ const encodedUrl = c . req . param ( "encoded_url" ) . trim ( ) ;
8888
8989 const url = decodeURIComponent ( encodedUrl ) ;
9090
@@ -98,7 +98,7 @@ app.get("/qr/svg/url/:encoded_url", (c) => {
9898
9999app . get ( "/qr/png/url/:encoded_url" , async ( c ) => {
100100 const logger = createLogger ( "qr-render-png" ) ;
101- const encodedUrl = c . req . param ( "encoded_url" ) . trim ( ) . toLowerCase ( ) ;
101+ const encodedUrl = c . req . param ( "encoded_url" ) . trim ( ) ;
102102
103103 try {
104104 await initWasm ( resvgwasm as WebAssembly . Module ) ;
You can’t perform that action at this time.
0 commit comments