diff --git a/app/v1/match.go b/app/v1/match.go index eb0f888..5a5b6ab 100644 --- a/app/v1/match.go +++ b/app/v1/match.go @@ -105,7 +105,7 @@ type matchDataResponse struct { CurrentGameId *int `json:"current_game_id"` } -var SongNameRegex = regexp.MustCompile(`^([^\[]+) - ([^\[]+) \[([^\[]+)\]$`) +var SongNameRegex = regexp.MustCompile(`^(.+) - (.+) \[(.+)\]$`) func splitSongName(songName string) (string, string, string) { var artist, title, version string