Skip to content

Commit

Permalink
Explicit delcaration of default values for _cacheDurationInHours and …
Browse files Browse the repository at this point in the history
…_cacheDurationInDays
  • Loading branch information
scampower3 committed Mar 8, 2024
1 parent 6128f76 commit 606f2ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jellyfin.Plugin.Tvdb/Configuration/PluginConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public class PluginConfiguration : BasePluginConfiguration
/// Gets the tvdb api key for project.
/// </summary>
public const string ProjectApiKey = "7f7eed88-2530-4f84-8ee7-f154471b8f87";
private int _cacheDurationInHours;
private int _cacheDurationInDays;
private int _cacheDurationInHours = 1;
private int _cacheDurationInDays = 7;

/// <summary>
/// Gets or sets the tvdb api key for user.
Expand Down

0 comments on commit 606f2ec

Please sign in to comment.