Djrango Tonic commited on
Commit
6a37ffa
1 Parent(s): 8e698e5

Fixes a bug experienced by some users (#4)

Browse files

- Fixes a bug experienced by some users (44a43a8d36db8b9aac66c0708419b1f08218a28d)


Co-authored-by: Joseph [open/acc] Pollack <[email protected]>

Files changed (1) hide show
  1. app.py +2 -1
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, # Disable public URL sharing
 
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
  )