Remove compute name hook

This commit is contained in:
Ben Sarmiento
2023-12-07 16:30:17 +01:00
parent 94230ab4dc
commit 0f6eeaa28d

View File

@@ -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
}