mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Fix getExtensionFileFolder() to use extension name
An extension's ID is not a stable field between installs. I think that this should fix that. Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
3300a99a78
commit
20571f977e
@ -46,7 +46,7 @@ export class LensExtension {
|
||||
* folder name.
|
||||
*/
|
||||
async getExtensionFileFolder(): Promise<string> {
|
||||
return filesystemProvisionerStore.requestDirectory(this.id);
|
||||
return filesystemProvisionerStore.requestDirectory(this.name);
|
||||
}
|
||||
|
||||
get description() {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user