Fixed compile error and removed debug server connection handler

canary
WolverinDEV 2020-09-24 15:58:23 +02:00 committed by WolverinDEV
parent 712b311da4
commit db9711cf12
2 changed files with 1 additions and 10 deletions

View File

@ -192,15 +192,6 @@ function main() {
initial_handler.acquireInputHardware().then(() => {});
server_connections.set_active_connection(initial_handler);
/* Just a test */
{
server_connections.spawn_server_connection();
server_connections.spawn_server_connection();
server_connections.spawn_server_connection();
server_connections.spawn_server_connection();
server_connections.spawn_server_connection();
}
/** Setup the XF forum identity **/
fidentity.update_forum();
keycontrol.initialize();

View File

@ -48,7 +48,7 @@ const ConnectionHandler = (props: { handlerId: string, active: boolean }) => {
break;
case "connecting":
displayedName = <Translatable key={"connecting"}>Connecting to server <LoadingDots /></Translatable>;
displayedName = <><Translatable key={"connecting"}>Connecting to server</Translatable> <LoadingDots /></>;
break;
case "disconnected":