alpha
Login
or
Join now
tokono.ma
/
diffuse-applets
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Experiment to rebuild Diffuse using web applets.
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
chore: 1200 size musicbrainz cover
author
Steven Vandevelde
date
11 months ago
(Jul 6, 2025, 5:11 PM +0200)
commit
833864e8
833864e8669925348f29d7b4c39af4f084d4abbb
parent
81cceb1d
81cceb1d3f7998fcca140d27d8b504236ea3574c
+1
-1
1 changed file
Expand all
Collapse all
Unified
Split
src
scripts
processor
artwork
worker.ts
+1
-1
src/scripts/processor/artwork/worker.ts
Reviewed
···
134
134
const credit = release?.["artist-credit"]?.[0]?.name;
135
135
if (req.variousArtists && credit !== "Various Artists" && credit !== req.tags?.artist) return [];
136
136
137
137
-
return await fetch(`https://coverartarchive.org/release/${release.id}/front-500`)
137
137
+
return await fetch(`https://coverartarchive.org/release/${release.id}/front-1200`)
138
138
.then((r) => r.blob())
139
139
.then(async (b) => {
140
140
if (b.type.startsWith("image/")) {