Fix scrobbling tracks with featured artists

This commit is contained in:
2023-02-16 02:13:52 -05:00
parent c7b84b27b2
commit cc82504262
7 changed files with 54 additions and 34 deletions

View File

@ -7,12 +7,8 @@ from django.db import models
from django.urls import reverse
from django.utils.translation import gettext_lazy as _
from django_extensions.db.models import TimeStampedModel
from sqlalchemy import update
from scrobbles.mixins import ScrobblableMixin
from vrobbler.apps.sports.utils import (
get_players_from_event,
get_round_name_from_event,
)
from sports.utils import get_players_from_event, get_round_name_from_event
logger = logging.getLogger(__name__)
BNULL = {"blank": True, "null": True}