diff --git a/README.md b/README.md index e9d35dd..a328b40 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ To exclude media from being considered from deletion, set the `janitorr_keep` ta ### Setting up Docker - map /config from within the container to a host folder of your choice -- within that host folder, put a copy of [application.yml](https://github.com/Schaka/janitorr/blob/main/src/main/resources/application.yml) from this repository +- within that host folder, put a copy of [application.yml](https://github.com/Schaka/janitorr/blob/develop/src/main/resources/application.yml) from this repository - adjust said copy with your own info like *arr, jellyfin and jellyseerr API keys and your preferred port - you do NOT need to fill in a torrent client YET diff --git a/src/main/kotlin/com/github/schaka/janitorr/mediaserver/emby/EmbyRestService.kt b/src/main/kotlin/com/github/schaka/janitorr/mediaserver/emby/EmbyRestService.kt index c8866cf..f2590f8 100644 --- a/src/main/kotlin/com/github/schaka/janitorr/mediaserver/emby/EmbyRestService.kt +++ b/src/main/kotlin/com/github/schaka/janitorr/mediaserver/emby/EmbyRestService.kt @@ -17,7 +17,7 @@ import kotlin.io.path.exists import kotlin.io.path.listDirectoryEntries @Service -@ConditionalOnProperty("clients.emby.enabled", havingValue = "true") +@ConditionalOnProperty("clients.emby.enabled", havingValue = "true", matchIfMissing = false) class EmbyRestService( val embyProperties: EmbyProperties, diff --git a/src/main/kotlin/com/github/schaka/janitorr/mediaserver/jellyfin/JellyfinRestService.kt b/src/main/kotlin/com/github/schaka/janitorr/mediaserver/jellyfin/JellyfinRestService.kt index 8310144..fcd4559 100644 --- a/src/main/kotlin/com/github/schaka/janitorr/mediaserver/jellyfin/JellyfinRestService.kt +++ b/src/main/kotlin/com/github/schaka/janitorr/mediaserver/jellyfin/JellyfinRestService.kt @@ -19,7 +19,7 @@ import java.nio.file.Path import kotlin.io.path.* @Service -@ConditionalOnProperty("clients.jellyfin.enabled", havingValue = "true") +@ConditionalOnProperty("clients.jellyfin.enabled", havingValue = "true", matchIfMissing = false) class JellyfinRestService( val jellyfinClient: JellyfinClient,