Fix undefined variable in error log for when podcast cron is invalid

This commit is contained in:
advplyr 2026-04-24 16:18:56 -05:00
parent a5362de9cc
commit d6a2e5596b

View file

@ -167,7 +167,7 @@ class CronManager {
task task
}) })
} catch (error) { } catch (error) {
Logger.error(`[PodcastManager] Failed to schedule podcast cron ${this.serverSettings.podcastEpisodeSchedule}`, error) Logger.error(`[PodcastManager] Failed to schedule podcast cron ${expression}`, error)
} }
} }