Spaces:
Runtime error
Runtime error
Fixes a bug experienced by some users
Browse files![image.png](https://cdn-uploads.huggingface.co/production/uploads/62a3bb1cd0d8c2c2169f0b88/GqdY4HAsH0-on400_v3j1.png)
app.py
CHANGED
@@ -428,5 +428,6 @@ if __name__ == "__main__":
|
|
428 |
demo.launch(
|
429 |
server_name="0.0.0.0", # Listen on all network interfaces
|
430 |
server_port=7860, # Use a specific port
|
431 |
-
share=False,
|
|
|
432 |
)
|
|
|
428 |
demo.launch(
|
429 |
server_name="0.0.0.0", # Listen on all network interfaces
|
430 |
server_port=7860, # Use a specific port
|
431 |
+
share=False, # Disable public URL sharing
|
432 |
+
ssr_mode=False # Fixes bug for some users
|
433 |
)
|