File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -87,14 +87,14 @@ export function setShowOverlay(showOverlay: boolean): Action {
8787export const navigateToFlatPage =
8888 ( flatId : string ) => async ( dispatch : Dispatch ) => {
8989 logger . trace ( 'navigateToFlatPage' ) ;
90- await sleep ( 10000 ) ;
90+ await sleep ( 1000 ) ;
9191 dispatch ( setBotIsActing ( true ) ) ;
9292 dispatch ( setBotMessage ( `Wohnung ${ flatId } suchen...` ) ) ;
9393 dispatch ( setShowOverlay ( false ) ) ;
9494 await dispatch ( scrollIntoViewAction ( 'puppet' , entrySelector ( flatId ) ) ) ;
9595 dispatch ( calculateOverviewBoundingBoxes ( ) ) ;
9696 dispatch ( setShowOverlay ( true ) ) ;
97- await sleep ( 5000 ) ;
97+ await sleep ( 1000 ) ;
9898 dispatch ( setShowOverlay ( false ) ) ;
9999 dispatch ( setBotMessage ( `Wohnung ${ flatId } genauer anschauen!` ) ) ;
100100 const puppetView = new ElectronUtils (
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ export default (store: Store & { dispatch: Dispatch }) =>
117117 ) ;
118118 await store . dispatch ( getOverviewData ( ) ) ;
119119 await store . dispatch ( refreshVerdicts ( ) ) ;
120- await sleep ( 20000 ) ;
120+ await sleep ( 2000 ) ;
121121 store . dispatch ( launchNextTask ( ) ) ;
122122 }
123123
You can’t perform that action at this time.
0 commit comments