Skip to content

Commit

Permalink
Fixed a bug where analyze files action on a library wasn't triggering
Browse files Browse the repository at this point in the history
  • Loading branch information
majora2007 committed Sep 17, 2024
1 parent c691ab6 commit 04eac79
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 04eac79

Please sign in to comment.