fix bad reload call

This commit is contained in:
Joao Moreno 2018-04-17 10:33:13 +02:00
parent c22eeb001e
commit fffc6c3b1c

View file

@ -68,7 +68,7 @@ export class Driver implements IDriver, IWindowDriverRegistry {
const window = this.windowsService.getWindowById(windowId);
this.reloadingWindowIds.add(windowId);
window.reload();
this.windowsService.reload(window);
}
async dispatchKeybinding(windowId: number, keybinding: string): TPromise<void> {