From 0507cd2d9003858612cc41f1fe2991fb2f1df29d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Tue, 13 Oct 2020 17:04:40 +0200 Subject: [PATCH] electron-platform: Use camel case for the user/device id. --- src/vector/platform/ElectronPlatform.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vector/platform/ElectronPlatform.tsx b/src/vector/platform/ElectronPlatform.tsx index ab3fc153c1..64835a00d4 100644 --- a/src/vector/platform/ElectronPlatform.tsx +++ b/src/vector/platform/ElectronPlatform.tsx @@ -140,8 +140,8 @@ class SeshatIndexManager extends BaseEventIndexManager { return this._ipcCall('supportsEventIndexing'); } - async initEventIndex(user_id: string, device_id: string): Promise { - return this._ipcCall('initEventIndex', user_id, device_id); + async initEventIndex(userId: string, deviceId: string): Promise { + return this._ipcCall('initEventIndex', userId, deviceId); } async addEventToIndex(ev: MatrixEvent, profile: MatrixProfile): Promise {