diff --git a/manifest.json b/manifest.json index 3e3174b..696eaf9 100755 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "id": "obsidian-icon-shortcodes", "name": "Icon Shortcodes", "version": "0.5.1", - "minAppVersion": "0.12.17", + "minAppVersion": "0.13.4", "description": "Insert emoji and custom icons with shortcodes", "author": "AidenLx", "authorUrl": "https://github.com/aidenlx", diff --git a/src/icon-packs/pack-manager.ts b/src/icon-packs/pack-manager.ts index 49c16a4..de14bcb 100644 --- a/src/icon-packs/pack-manager.ts +++ b/src/icon-packs/pack-manager.ts @@ -49,8 +49,6 @@ export default class PackManager extends Events { ): Promise { const newPath = join(this.customIconsDir, newId + ext), path = join(this.customIconsDir, id + ext); - return Promise.reject(); - // Not working yet await this.vault.adapter.rename(path, newPath); return newPath; }