mirror of
https://github.com/aome510/spotify-player.git
synced 2026-04-26 09:25:49 +03:00
[GH-ISSUE #908] Linux notification spec does not define JPG #1485
Labels
No labels
bug
documentation
enhancement
good first issue
help wanted
pull-request
question
third-party
third-party
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotify-player#1485
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @sewnie on GitHub (Jan 5, 2026).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/908
Describe the bug
In the FreeDesktop Icon Theme Specification the only defined icon formats are PNG, SVG, or XPM, not JPG. This is important as this specification is also referenced in the notification spec.
To Reproduce
Use a strictly compliant notification daemon such as fnott.
Additional context
To workaround this, the icon can be encoded into PNG and sent as a notification. However, the
notify_rustcrate does not allow this, as it does not permit accepting a raw array of bytes. The only other solution would be to clear the image cache directory and download images as PNG moving forward.