1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

protect syncXChannel

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2020-11-19 10:45:50 +02:00
parent 946519e397
commit d222c36c0a

View File

@ -37,11 +37,11 @@ export class BaseStore<T = any> extends Singleton {
return path.basename(this.storeConfig.path);
}
get syncRendererChannel() {
protected get syncRendererChannel() {
return `store-sync-renderer:${this.path}`
}
get syncMainChannel() {
protected get syncMainChannel() {
return `store-sync-main:${this.path}`
}