disable automatic under attack in rdrama

pull/222/head
Aevann 2024-02-13 10:39:37 +02:00
parent 99269a9f0e
commit e8c8fa6b17
1 changed files with 9 additions and 8 deletions

View File

@ -61,14 +61,15 @@ def calc_users():
else:
ddos_threshold = 1000
if g.loggedin_counter + g.loggedout_counter > ddos_threshold:
if not get_setting('under_attack'):
set_setting('under_attack', True)
set_security_level('under_attack')
else:
if get_setting('under_attack'):
set_setting('under_attack', False)
set_security_level('high')
if SITE != 'rdrama.net':
if g.loggedin_counter + g.loggedout_counter > ddos_threshold:
if not get_setting('under_attack'):
set_setting('under_attack', True)
set_security_level('under_attack')
else:
if get_setting('under_attack'):
set_setting('under_attack', False)
set_security_level('high')
return ''
def get_logged_in_user():