[MM-58593] Ensure desktop app reloads the current URL when reloading manually (#3061)

This commit is contained in:
Devin Binnie
2024-06-13 09:03:10 -04:00
committed by GitHub
parent 3139d485d4
commit bf07674d68
2 changed files with 20 additions and 1 deletions

View File

@@ -165,7 +165,7 @@ export class ViewManager {
const currentView = this.getCurrentView();
if (currentView) {
LoadingScreen.show();
currentView.reload();
currentView.reload(currentView.currentURL);
}
};