mirror of
https://github.com/Rigellute/spotify-tui.git
synced 2026-04-26 08:05:57 +03:00
[GH-ISSUE #1013] ERROR: Can't recognize collecitons/folders #448
Labels
No labels
bug
enhancement
good first issue
help wanted
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotify-tui#448
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 @guilh-n-l on GitHub (Aug 22, 2022).
Original GitHub issue: https://github.com/Rigellute/spotify-tui/issues/1013
I tried deleting all my folders to try to fix it but the errror is still there. Also logged out and in to see if it worked but to no avail.
@guilh-n-l commented on GitHub (Aug 22, 2022):
I use windows 10 btw
@AntoineGagne commented on GitHub (Sep 2, 2022):
I might be wrong (I am not really familiar with the codebase), but I think this is an issue with
rspotifywhich is one of the dependencies of the project.spotify-tuiseems to be using version0.10.0which do not seem to support this enum variant.The
masterbranch ofrspotifyseems to support them though, but trying to upgrade the dependency to its latest version seems to introduce some issues with the application.In the meantime, as a quick patch, I forked
rspotifyand created a branch where I added the enum variant. Locally, I can then modify theCargo.tomlto point to it and recompile it:Sorry if this is not that helpful.
EDIT: It seems to also be a duplicate of #912.
@sewnie commented on GitHub (Sep 16, 2022):
@AntoineGagne i don't believe its that easy to fix, latest versions of rspotify break spotify-tui.
@AntoineGagne commented on GitHub (Sep 16, 2022):
I am definitely not suggesting it is easy to fix. From what I can see, there has been pretty big changes between the version of
rspotifyused here and the latest one. My patch is only a bandaid and it just adds the missing type to the variant that is complaining in the error message. It is not a viable long-term solution (patching the downstream dependency that is).