Fixes a bug experienced by some users

#4
by Tonic - opened
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
  )