Ignore:
Timestamp:
09/02/26 05:22:09 (4 weeks ago)
Author:
mmilevski <markomilevski3@…>
Branches:
main
Children:
1dcdb2c
Parents:
d89d25b
Message:

Various UI bugfixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • KernelRecordsMVC.Web/Controllers/ReleaseController.cs

    rd89d25b r595d2e5  
    139139    {
    140140        var release = _context.Releases
     141            .Include(r => r.ReleaseArtists)
     142            .ThenInclude(ra => ra.Artist)
     143
    141144            .Include(r => r.Products)
    142 
    143             .Include(r => r.ReleaseArtists)
    144                 .ThenInclude(ra => ra.Artist)
     145            .ThenInclude(p => p.ModificationProducts)
     146            .ThenInclude(mp => mp.Modification)
    145147
    146148            .Include(r => r.Album)
    147                 .ThenInclude(a => a!.AlbumSongs)
    148                     .ThenInclude(x => x.Song)
    149                         .ThenInclude(s => s.SongArtists)
    150                             .ThenInclude(sa => sa.Artist)
     149            .ThenInclude(a => a.AlbumSongs)
     150            .ThenInclude(albumSong => albumSong.Song)
     151            .ThenInclude(song => song.SongArtists)
     152            .ThenInclude(songArtist => songArtist.Artist)
    151153
    152154            .Include(r => r.SingleRelease)
Note: See TracChangeset for help on using the changeset viewer.