File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919
2020## Bug Fixes
2121
22+ - Fixed stale resolver errors on system boot showing in pop-up
2223- Forecast now can cycle through all 3 pages instead of just 2
2324- Details are now arranged in a grid and are aligned by columns
2425- Fixed some weird spacing in custom themes
Original file line number Diff line number Diff line change @@ -376,7 +376,10 @@ export default class SimpleWeatherExtension extends Extension {
376376 if ( errStr . length > 25 ) errStr = errStr . substring ( 0 , 25 ) + "..." ;
377377 }
378378
379- if ( ! this . #cachedWeather) await this . #handleErr( err ) ;
379+ if ( ! this . #cachedWeather) {
380+ await this . #handleErr( err ) ;
381+ if ( this . #cachedWeather) errStr = null ;
382+ }
380383 }
381384 if ( this . #popup) this . #popup. setError ( errStr ) ;
382385 else console . error ( `No popup to notify of error (${ errStr } )` ) ;
You can’t perform that action at this time.
0 commit comments