ElectronPlatform: Replace the indexSize method with the getStats method.

This commit is contained in:
Damir Jelić 2020-01-21 13:33:20 +01:00
parent e556bb242f
commit e1e3bba290
2 changed files with 16 additions and 15 deletions

View file

@ -152,12 +152,12 @@ class SeshatIndexManager extends BaseEventIndexManager {
return this._ipcCall('closeEventIndex');
}
async deleteEventIndex(): Promise<> {
return this._ipcCall('deleteEventIndex');
async getStats(): Promise<> {
return this._ipcCall('getStats');
}
async indexSize(): Promise<> {
return this._ipcCall('indexSize');
async deleteEventIndex(): Promise<> {
return this._ipcCall('deleteEventIndex');
}
}