diff --git a/UI/Web/src/app/sidenav/_modals/library-settings-modal/library-settings-modal.component.ts b/UI/Web/src/app/sidenav/_modals/library-settings-modal/library-settings-modal.component.ts index 83095e0fa4..1201abbf1b 100644 --- a/UI/Web/src/app/sidenav/_modals/library-settings-modal/library-settings-modal.component.ts +++ b/UI/Web/src/app/sidenav/_modals/library-settings-modal/library-settings-modal.component.ts @@ -398,6 +398,9 @@ export class LibrarySettingsModalComponent implements OnInit { case Action.GenerateColorScape: await this.actionService.refreshLibraryMetadata(this.library!, undefined, false); break; + case (Action.AnalyzeFiles): + await this.actionService.analyzeFiles(this.library!); + break; case Action.Delete: await this.actionService.deleteLibrary(this.library!, () => { this.modal.dismiss(); diff --git a/openapi.json b/openapi.json index c8531966ba..e0fceb7b41 100644 --- a/openapi.json +++ b/openapi.json @@ -2,7 +2,7 @@ "openapi": "3.0.1", "info": { "title": "Kavita", - "description": "Kavita provides a set of APIs that are authenticated by JWT. JWT token can be copied from local storage. Assume all fields of a payload are required. Built against v0.8.2.11", + "description": "Kavita provides a set of APIs that are authenticated by JWT. JWT token can be copied from local storage. Assume all fields of a payload are required. Built against v0.8.2.12", "license": { "name": "GPL-3.0", "url": "https://github.com/Kareadita/Kavita/blob/develop/LICENSE"