From 0f6eeaa28d48778823239d1d2e411d64f22d987d Mon Sep 17 00:00:00 2001 From: Ben Sarmiento Date: Thu, 7 Dec 2023 16:30:17 +0100 Subject: [PATCH] Remove compute name hook --- internal/config/types.go | 5 ----- 1 file changed, 5 deletions(-) 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 -}