2 İşlemeler 734766daf3 ... 5bb7ff9aeb

Yazar SHA1 Mesaj Tarih
  GeoShaPoH 5bb7ff9aeb Merge branch 'master' of https://git.checkthis.space/geoshapoh/hokoritemp 5 ay önce
  GeoShaPoH e7f8bce21a Actualiza la lógica para generar la URL de descarga utilizando un argumento de línea de comandos para el protocolo HTTPS. 5 ay önce
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      app.py

+ 1 - 1
app.py

@@ -113,7 +113,7 @@ def upload_file():
             # Crear enlace temporal (expira en 24 horas)
             # Usar el dominio configurado o el host actual
             domain = os.getenv('DOMAIN', request.host)
-            protocol = 'https' if request.is_secure else 'http'
+            protocol = 'https' if args.https else 'http'
             download_url = f"{protocol}://{domain}/download/{file_id}"
             
             return jsonify({