diff --git a/internal/config/types.go b/internal/config/types.go index f1847a6..bf08dff 100644 --- a/internal/config/types.go +++ b/internal/config/types.go @@ -52,7 +52,6 @@ type ZurgConfig struct { ForceIPv6 bool `yaml:"force_ipv6" json:"force_ipv6"` OnLibraryUpdate string `yaml:"on_library_update" json:"on_library_update"` - ComputeNameHook string `yaml:"compute_name_hook" json:"compute_name_hook"` } func (z *ZurgConfig) GetConfig() ZurgConfig { @@ -158,7 +157,3 @@ func (z *ZurgConfig) GetRateLimitSleepSeconds() int { func (z *ZurgConfig) ShouldDeleteRarFiles() bool { return z.DeleteRarFiles } - -func (z *ZurgConfig) GetComputeNameHook() string { - return z.ComputeNameHook -}