diff options
Diffstat (limited to 'src/data')
| -rw-r--r-- | src/data/things/track.js | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/data/things/track.js b/src/data/things/track.js index 8652fbdf..5b40ca4d 100644 --- a/src/data/things/track.js +++ b/src/data/things/track.js @@ -492,7 +492,17 @@ export class Track extends Thing { // > Update & expose - Music videos - musicVideos: thingList(V(MusicVideo)), + musicVideos: [ + exposeUpdateValueOrContinue(), + + // TODO: Same situation as lyrics. Inherited music videos don't set + // the proper .thing property back to this track... but then, it needs + // to keep a reference to its original .thing to get its proper path, + // so maybe this is okay... + inheritFromMainRelease(), + + thingList(V(MusicVideo)), + ], // > Update & expose - Additional files |