File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export async function getMeta(
1717 try {
1818 if ( ! browser ) return fetchMeta ( device , version , fetch ) ;
1919
20- const dbRequest = indexedDB . open ( "version-meta" , 2 ) ;
20+ const dbRequest = indexedDB . open ( "version-meta" , 3 ) ;
2121 const db = await new Promise < IDBDatabase > ( ( resolve , reject ) => {
2222 dbRequest . onsuccess = ( ) => resolve ( dbRequest . result ) ;
2323 dbRequest . onerror = ( ) => reject ( dbRequest . error ) ;
@@ -116,7 +116,7 @@ async function fetchMeta(
116116 . then ( ( it ) => ( it as any ) . default )
117117 . then ( ( settings : SettingsMeta [ ] ) => {
118118 if ( ! device . startsWith ( "lite_" ) ) {
119- settings = settings . filter ( ( it ) => it . name = == "leds" ) ;
119+ settings = settings . filter ( ( it ) => it . name ! == "leds" ) ;
120120 }
121121 return settings ;
122122 } ) ) ,
You can’t perform that action at this time.
0 commit comments