Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Araxeus committed May 7, 2021
1 parent 8b471c0 commit 1140c3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/downloader/back.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function handle(win) {
const songMetadata = { ...metadata, ...currentMetadata };

if (!songMetadata.image && songMetadata.imageSrc) {
songMetadata.image = await getImage(songMetadata.imageSrc)
songMetadata.image = await getImage(songMetadata.imageSrc);
}

try {
Expand Down
4 changes: 2 additions & 2 deletions providers/song-info.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const getArtist = async (win) => {
artistName.textContent;
}
`
)
);
}

// Fill songInfo with empty values
Expand Down Expand Up @@ -109,7 +109,7 @@ function cleanupArtistName(artist) {
}
for (const suffix of suffixesToRemove) {
if (artist.endsWith(suffix)) {
return artist.slice(0, -suffix.length)
return artist.slice(0, -suffix.length);
}
}
return artist;
Expand Down

0 comments on commit 1140c3e

Please sign in to comment.