jesseward / jellyfin-plugin-lastfm

LastFM plugin for the Jellyfin media system. Fork of the Emby Last.FM plug-in
178 stars 11 forks source link

bugfix - Adds a `null` check before building `TrackLoveRequest` (fix #57) #58

Closed jesseward closed 7 months ago

jesseward commented 7 months ago

Summary

As reported in #57 , attempts to "love" a track that does not include ID3 metadata, the plugin crashes with an unhandled exception (System.InvalidOperationException: Sequence contains no elements).

This change adds a null check before building the TrackLoveRequest and returns early if required metadata is not present.

This change also

Related