Skip to content

Commit

Permalink
Trigger CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lyarenei committed Sep 30, 2024
1 parent dce2aff commit 35fce77
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Jellyfin.Plugin.ListenBrainz/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,11 @@ public IEnumerable<PluginPageInfo> GetPages()
public static PluginConfiguration GetConfiguration()
{
var config = _thisInstance?.Configuration;
if (config is not null) return config;
if (config is not null)
{
return config;
}

throw new PluginException("Plugin instance is not available");
}

Expand Down

0 comments on commit 35fce77

Please sign in to comment.