|  | @@ -22,13 +22,14 @@ def _generate_token(room:str)->str:
 | 
	
		
			
			| 22 | 22 |      exp = now+datetime.timedelta(seconds=JWT_DURATION)
 | 
	
		
			
			| 23 | 23 |      data = {
 | 
	
		
			
			| 24 | 24 |          "iss":JWT_APP_ID, #Issuer
 | 
	
		
			
			| 25 |  | -        "room": room, # Custom-param for jitsi-meet
 | 
	
		
			
			|  | 25 | +        "room": room, # Custom-param for jitsi_meet
 | 
	
		
			
			| 26 | 26 |          "aud": "*", # TODO: Understood this param
 | 
	
		
			
			| 27 | 27 |          "exp": exp, # Expiration date
 | 
	
		
			
			| 28 | 28 |          "nbf": now, # NotBefore
 | 
	
		
			
			| 29 | 29 |          "iat": now  # IssuedAt
 | 
	
		
			
			| 30 | 30 |      }
 | 
	
		
			
			| 31 |  | -    jwttoken=jwt.encode(data,
 | 
	
		
			
			|  | 31 | +    jwt
 | 
	
		
			
			|  | 32 | +    jwttoken= jwt.encode(data,
 | 
	
		
			
			| 32 | 33 |                          JWT_SECRET,
 | 
	
		
			
			| 33 | 34 |                          algorithm=JWT_ALG)
 | 
	
		
			
			| 34 | 35 |      return jwttoken.decode("utf-8")
 |