@@ -530,7 +530,9 @@ class Localuser {
530530 const temp = JSON . parse ( build ) ;
531531 build = "" ;
532532 await this . handleEvent ( temp ) ;
533+
533534 if ( temp . op === 0 && temp . t === "READY" ) {
535+ console . log ( "in here?" ) ;
534536 returny ( ) ;
535537 }
536538 } catch { }
@@ -662,6 +664,7 @@ class Localuser {
662664 if ( this . swapped ) return ;
663665 loaddesc . textContent = I18n . retrying ( ) ;
664666 this . initwebsocket ( ) . then ( async ( ) => {
667+ console . log ( "FINE ME" ) ;
665668 this . loaduser ( ) ;
666669 await this . init ( ) ;
667670 const loading = document . getElementById ( "loading" ) as HTMLElement ;
@@ -675,7 +678,9 @@ class Localuser {
675678 ) ;
676679 } else loaddesc . textContent = I18n . unableToConnect ( ) ;
677680 } ) ;
681+ console . log ( "here?" ) ;
678682 await promise ;
683+ console . warn ( "huh" ) ;
679684 }
680685 interNonceMap = new Map < string , Message > ( ) ;
681686 registerInterNonce ( nonce : string , thing : Message ) {
@@ -2860,6 +2865,14 @@ class Localuser {
28602865 } ,
28612866 { initState : ! this . perminfo . user . disableColors } ,
28622867 ) ;
2868+ accessibility . addCheckboxInput (
2869+ I18n . accessibility . gradientColors ( ) ,
2870+ ( t ) => {
2871+ console . log ( t ) ;
2872+ this . perminfo . user . gradientColors = t ;
2873+ } ,
2874+ { initState : this . perminfo . user . gradientColors } ,
2875+ ) ;
28632876 accessibility . addCheckboxInput (
28642877 I18n . channel . allowIcons ( ) ,
28652878 ( t ) => {
0 commit comments