diff --git a/src/components/SeriesActionsMenu.vue b/src/components/SeriesActionsMenu.vue index d185905..8b413cb 100644 --- a/src/components/SeriesActionsMenu.vue +++ b/src/components/SeriesActionsMenu.vue @@ -9,6 +9,12 @@ Reset Metadata + + Clear Volume Cache + + + Clear Issues Cache + @@ -110,6 +116,26 @@ async function autoIdentify() { } loading.value = false } + +async function clearSeriesCache() { + loading.value = true + try { + await metadataService.clearSeriesCache(libraryId(), seriesId()) + } catch (e) { + errorNotification(e, $q) + } + loading.value = false +} + +async function clearSeriesIssuesCache() { + loading.value = true + try { + await metadataService.clearSeriesIssuesCache(libraryId(), seriesId()) + } catch (e) { + errorNotification(e, $q) + } + loading.value = false +}