Skip to content

Commit

Permalink
[Config] Adjust docs to better reflect Emby settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Schaka committed Mar 7, 2024
1 parent 18caa5f commit 538bf06
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 538bf06

Please sign in to comment.