Skip to content

Commit

Permalink
Change default backup folder to Dygma (#507)
Browse files Browse the repository at this point in the history
Signed-off-by: Johan Eklund <[email protected]>
  • Loading branch information
jreklund committed Sep 26, 2023
1 parent 2652066 commit e8ec420
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ class App extends React.Component {
// Store all settings from electron settings in electron store.
const data = {};
const userPath = await ipcRenderer.invoke("get-userPath", "home");
data.backupFolder = path.join(userPath, "Raise", "Backups");
data.backupFolder = path.join(userPath, "Dygma", "Backups");
data.backupFrequency = 30;
data.language = translator[locale.split("-")[0]] !== "" ? translator[locale.split("-")[0]] : "english";
data.darkMode = "system";
Expand Down

0 comments on commit e8ec420

Please sign in to comment.