this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: Spotify unfurls to a player and not a click-throuh image

+2 -2
+2 -2
internal/templates/views/index.html
··· 193 193 194 194 previewDiv.innerHTML = previewHTML; 195 195 196 - // Auto-expand Reddit embeds to provide "richer view out of the box" 196 + // Auto-expand Reddit and Spotify embeds to provide "richer view out of the box" 197 197 // The custom card acts as a placeholder or fallback, but we trigger the embed swap immediately. 198 - if (provider === "Reddit" && data.embed_html) { 198 + if ((provider === "Reddit" || provider === "Spotify") && data.embed_html) { 199 199 var imgDiv = previewDiv.querySelector('.og-image.is-video'); 200 200 if (imgDiv) { 201 201 // Small delay to ensure render? No, synchronous is fine for DOM,