summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-04-29 16:33:18 +0200
committerSebastian Holmin <sebastian.holmin@mullvad.net>2025-05-28 13:25:32 +0200
commit1e6ab7ab38eba6865ed5a175a32447fda18a2912 (patch)
tree235fe2c9b871d87a694a401a66300fe2010a2ce9
parent1f32a401d87f1b8fe3658640dd5785bc179cccba (diff)
downloadmullvadvpn-1e6ab7ab38eba6865ed5a175a32447fda18a2912.tar.xz
mullvadvpn-1e6ab7ab38eba6865ed5a175a32447fda18a2912.zip
Rename AppUpgrade function to conform to naming standards
-rw-r--r--desktop/packages/mullvad-vpn/src/renderer/app.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/app.tsx b/desktop/packages/mullvad-vpn/src/renderer/app.tsx
index d579923b73..80dae05878 100644
--- a/desktop/packages/mullvad-vpn/src/renderer/app.tsx
+++ b/desktop/packages/mullvad-vpn/src/renderer/app.tsx
@@ -183,7 +183,7 @@ export default class AppRenderer {
}
// Check if the installer should be started automatically
- this.maybeStartAppUpgradeInstaller();
+ this.appUpgradeMaybeStartInstaller();
});
IpcRendererEventChannel.app.listenUpgradeError((appUpgradeError) => {
@@ -198,7 +198,7 @@ export default class AppRenderer {
this.setUpgradeVersion(upgradeVersion);
// Check if the installer should be started automatically
- this.maybeStartAppUpgradeInstaller();
+ this.appUpgradeMaybeStartInstaller();
});
IpcRendererEventChannel.guiSettings.listen((guiSettings: IGuiSettingsState) => {
@@ -656,7 +656,7 @@ export default class AppRenderer {
// If the installer has just been downloaded and verified we want to automatically
// start the installer if the window is focused.
- private maybeStartAppUpgradeInstaller() {
+ private appUpgradeMaybeStartInstaller() {
const reduxState = this.reduxStore.getState();
const appUpgradeEvent = reduxState.appUpgrade.event;