Fix path to MPD logo in Cocoa receiver (oops)

This commit is contained in:
Danielle McLean 2024-07-13 18:38:16 +10:00
parent 582a4628b7
commit ca5086f93a
Signed by: 00dani
GPG key ID: 6854781A0488421C

View file

@ -47,7 +47,7 @@ from .persistent_id import song_to_persistent_id
def logo_to_ns_image() -> NSImage:
return NSImage.alloc().initByReferencingFile_(
str(Path(__file__).parent.parent / "mpd/logo.svg")
str(Path(__file__).parent.parent.parent / "mpd/logo.svg")
)