mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-11-04 12:22:47 +00:00 
			
		
		
		
	Add missing exception handler
This commit is contained in:
		@@ -33,7 +33,10 @@ def socketio_disconnect():
 | 
				
			|||||||
    ' On disconnect the session id gets removed from the connected sessions
 | 
					    ' On disconnect the session id gets removed from the connected sessions
 | 
				
			||||||
    ' list.
 | 
					    ' list.
 | 
				
			||||||
    '''
 | 
					    '''
 | 
				
			||||||
 | 
					    try:
 | 
				
			||||||
        socketio_sessions.remove(request.sid)
 | 
					        socketio_sessions.remove(request.sid)
 | 
				
			||||||
 | 
					    except ValueError:
 | 
				
			||||||
 | 
					        pass
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@socketio.on('start_user_session')
 | 
					@socketio.on('start_user_session')
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user