mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-18 23:44:59 +01:00
Ensure EventStore is created in the appropriate userData directory (#433)
This commit is contained in:
parent
43484b21f4
commit
2032f64766
@ -47,8 +47,6 @@ try {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const eventStorePath = path.join(app.getPath('userData'), 'EventStore');
|
|
||||||
|
|
||||||
let eventIndex: SeshatType | null = null;
|
let eventIndex: SeshatType | null = null;
|
||||||
|
|
||||||
const seshatDefaultPassphrase = "DEFAULT_PASSPHRASE";
|
const seshatDefaultPassphrase = "DEFAULT_PASSPHRASE";
|
||||||
@ -80,6 +78,9 @@ const deleteContents = async (p: string): Promise<void> => {
|
|||||||
ipcMain.on('seshat', async function(_ev: IpcMainEvent, payload): Promise<void> {
|
ipcMain.on('seshat', async function(_ev: IpcMainEvent, payload): Promise<void> {
|
||||||
if (!global.mainWindow) return;
|
if (!global.mainWindow) return;
|
||||||
|
|
||||||
|
// We do this here to ensure we get the path after --profile has been resolved
|
||||||
|
const eventStorePath = path.join(app.getPath('userData'), 'EventStore');
|
||||||
|
|
||||||
const sendError = (id, e) => {
|
const sendError = (id, e) => {
|
||||||
const error = {
|
const error = {
|
||||||
message: e.message,
|
message: e.message,
|
||||||
|
Loading…
Reference in New Issue
Block a user