Skip to content

Commit

Permalink
Fix: Disable nullable and update targetAbi to 10.*
Browse files Browse the repository at this point in the history
  • Loading branch information
grunwalski committed Jan 26, 2025
1 parent 2a79fcb commit 395b94e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Jellyfin.Plugin.DelayedRelease/DelayedReleasePlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public DelayedReleasePlugin(
/// <summary>
/// Gets the current plugin instance.
/// </summary>
public static DelayedReleasePlugin? Instance { get; private set; }
public static DelayedReleasePlugin Instance { get; private set; }

/// <inheritdoc />
public IEnumerable<PluginPageInfo> GetPages()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Nullable>enable</Nullable>
<Nullable>disable</Nullable>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
Expand Down

0 comments on commit 395b94e

Please sign in to comment.