Spaces:
Sleeping
Sleeping
Fix: Revert share=True to share=False
Browse filesAccidentally changed share=False to share=True in the gallery
refactoring commit. Reverting to share=False as it should be.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
app.py
CHANGED
|
@@ -3942,6 +3942,6 @@ if __name__ == "__main__" and not os.environ.get("QR_TESTING_MODE"):
|
|
| 3942 |
|
| 3943 |
# ARTISTIC QR TAB
|
| 3944 |
app.queue() # Required for gr.Progress() to work!
|
| 3945 |
-
app.launch(share=
|
| 3946 |
# Note: Automatic file cleanup via delete_cache not available in Gradio 5.49.1
|
| 3947 |
# Files will be cleaned up when the server is restarted
|
|
|
|
| 3942 |
|
| 3943 |
# ARTISTIC QR TAB
|
| 3944 |
app.queue() # Required for gr.Progress() to work!
|
| 3945 |
+
app.launch(share=False, mcp_server=True)
|
| 3946 |
# Note: Automatic file cleanup via delete_cache not available in Gradio 5.49.1
|
| 3947 |
# Files will be cleaned up when the server is restarted
|