mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-11-04 04:12:45 +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
 | 
			
		||||
    ' list.
 | 
			
		||||
    '''
 | 
			
		||||
    socketio_sessions.remove(request.sid)
 | 
			
		||||
    try:
 | 
			
		||||
        socketio_sessions.remove(request.sid)
 | 
			
		||||
    except ValueError:
 | 
			
		||||
        pass
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@socketio.on('start_user_session')
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user