Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: improve apple music fuzzy matching #3011

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

anshg1214
Copy link
Member

No description provided.

if (fruzzyMatches[0]) {
await this.playAppleMusicId(fruzzyMatches[0].obj.id);

const matchWithAlbum = fuzzyMatches.find((match) => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should probably only be run if releaseName is truthy (I believe it is optional in the listen metadata so could potentially be undefined/null).

I'm also reading the documentation for fuzzysort, and I wonder if instead of a secondary pass, this couldn't all be achieved in a single pass (when calling fuzzysort.go above )by:

  • using both keys attributes.name and attribute.albumName
  • passing a custom scoreFn that boosts results that match the albumName

(See 'advanced usage' section https://github.com/farzher/fuzzysort?tab=readme-ov-file#advanced-usage )

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants