Skip to content

Fix artist extraction misidentifying date as artist for "Artist @ Venue - M/D" titles#67

Open
Copilot wants to merge 3 commits intomainfrom
copilot/fix-artist-misidentification
Open

Fix artist extraction misidentifying date as artist for "Artist @ Venue - M/D" titles#67
Copilot wants to merge 3 commits intomainfrom
copilot/fix-artist-misidentification

Conversation

Copy link
Contributor

Copilot AI commented Mar 19, 2026

extractArtistsFromTitle incorrectly extracted the trailing date (3/19) as the artist name for titles in the format "Solar Circuit w/ DJ Greenie @ The 8X10 - 3/19".

Changes

  • Strip @ Venue before dash-split: Removes @ Venue - Date suffix early, leaving only the artist portion before any dash logic runs
  • Date pattern guard on second part: Skips using the second dash-segment as artists when it matches /^\d+\/\d+$/ (e.g. 3/19), falling back to the first part instead
"Solar Circuit w/ DJ Greenie @ The 8X10 - 3/19"
  → strip @venue  → "Solar Circuit w/ DJ Greenie"
  → expand w/     → "Solar Circuit, DJ Greenie"  ✓

📍 Connect Copilot coding agent with Jira, Azure Boards or Linear to delegate work to Copilot in one click without leaving your project management tool.

@github-actions
Copy link

github-actions bot commented Mar 19, 2026

PR Preview Action v1.8.1

🚀 View preview at
https://ProLoser.github.io/funcheapmap/preview/pr-67/

Built to branch gh-pages at 2026-03-19 17:39 UTC.
Preview will be ready when the GitHub Pages deployment is complete.

…g. "Artist @ Venue - 3/19")

Co-authored-by: ProLoser <67395+ProLoser@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix artist misidentification for event on 3/19 Fix artist extraction misidentifying date as artist for "Artist @ Venue - M/D" titles Mar 19, 2026
Copilot AI requested a review from ProLoser March 19, 2026 07:02
@ProLoser ProLoser marked this pull request as ready for review March 19, 2026 17:39
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