mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-06-05 21:59:24 +02:00
Disabling debug for socketio client
This commit is contained in:
@@ -38,7 +38,7 @@ def process_variable_changes(socketio, classname, name, value, old_value, debug_
|
||||
if threading.get_ident() in rely_clients:
|
||||
sio = rely_clients[threading.get_ident()]
|
||||
else:
|
||||
sio = socketio_client.Client(logger=True, engineio_logger=True)
|
||||
sio = socketio_client.Client()
|
||||
@sio.event
|
||||
def connect():
|
||||
pass
|
||||
|
@@ -2110,7 +2110,6 @@ $(document).ready(function(){
|
||||
} else {
|
||||
story_unpin();
|
||||
}
|
||||
console.log("cookie: "+getCookie("preserve_game_space"));
|
||||
preserve_game_space((getCookie("preserve_game_space") == "true"));
|
||||
options_on_right((getCookie("options_on_right") == "true"));
|
||||
preserve_game_space(!(getCookie("preserve_game_space") == "false"));
|
||||
options_on_right(!(getCookie("options_on_right") == "false"));
|
||||
});
|
Reference in New Issue
Block a user