diff options
-rw-r--r-- | src/data/things/album.js | 2 | ||||
-rw-r--r-- | src/urls.js | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/data/things/album.js b/src/data/things/album.js index cbc3796e..af42c6fa 100644 --- a/src/data/things/album.js +++ b/src/data/things/album.js @@ -709,8 +709,6 @@ export class Album extends Thing { isDefaultTrackSection: true, }); - const albumRef = Thing.getReference(album); - const closeCurrentTrackSection = () => { if ( currentTrackSection.isDefaultTrackSection && diff --git a/src/urls.js b/src/urls.js index 9cc4a554..b51ea459 100644 --- a/src/urls.js +++ b/src/urls.js @@ -129,6 +129,9 @@ export function generateURLs(urlSpec) { if (template === null) { // Self-diagnose, brutally. + // TODO: This variable isn't used, and has never been used, + // but it might have been *meant* to be used? + // eslint-disable-next-line no-unused-vars const otherTemplateKey = (device ? 'posix' : 'device'); const {value: {[templateKey]: otherTemplate}} = |