electron-platform: Use camel case for the user/device id.
This commit is contained in:
parent
5350c5e551
commit
0507cd2d90
1 changed files with 2 additions and 2 deletions
|
@ -140,8 +140,8 @@ class SeshatIndexManager extends BaseEventIndexManager {
|
||||||
return this._ipcCall('supportsEventIndexing');
|
return this._ipcCall('supportsEventIndexing');
|
||||||
}
|
}
|
||||||
|
|
||||||
async initEventIndex(user_id: string, device_id: string): Promise<void> {
|
async initEventIndex(userId: string, deviceId: string): Promise<void> {
|
||||||
return this._ipcCall('initEventIndex', user_id, device_id);
|
return this._ipcCall('initEventIndex', userId, deviceId);
|
||||||
}
|
}
|
||||||
|
|
||||||
async addEventToIndex(ev: MatrixEvent, profile: MatrixProfile): Promise<void> {
|
async addEventToIndex(ev: MatrixEvent, profile: MatrixProfile): Promise<void> {
|
||||||
|
|
Loading…
Reference in a new issue