[GH-ISSUE #773] Albums section present, but empty ? #1397

Closed
opened 2026-03-14 14:39:08 +03:00 by kerem · 2 comments
Owner

Originally created by @saforem2 on GitHub (Jul 14, 2025).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/773

Describe the bug
The Albums section, for whatever reason, is there, but completely empty (?)

To Reproduce
Not exactly sure. They all used to be there, and are still there in: {the desktop application, the iPhone application, the web UI}, ...

Expected behaviour
I expected to see my albums listed in the Albums section

Log and backtrace

Backtrace: 

Log and backtrace of a run reproducing the bug to help debug the issue, which are usually located in $HOME/.cache/spotify-player/.

Please refer to this URL for more details.

Screenshots
Same issue in:

  • Kitty: kitty
  • iTerm2: iTerm2
  • Ghostty: Ghostty

Environment

  • OS:
  • Application version:
  • Application features: if applicable, provide cargo features used to build spotify_player

Additional context
Add any other context about the problem here.

It seems spotify_player is able to see my albums, i.e. if I:


#[2025-07-12 @ 21:45:59][~/p/s/e][🌱 main][🗑📝🤷🏻‍♂️✓]
; ~/.cargo/bin/spotify_player get key user-saved-albums | jq .
  • Head:

    [
      {
        "id": "5dRcUKPLdbgwL1ZhGW0sq4",
        "release_date": "2025-05-23",
        "name": "Formless",
        "artists": [
          {
            "id": "2NBB9IvbvEIP7aOmENuCof",
            "name": "Revival Season"
          }
        ],
        "typ": "single",
        "added_at": 1749576013
      }
    ]
    
  • ...CLIPPED..:

    #[2025-07-12 @ 21:54:00][~/p/p/bitchat][🌱 main][🗑📝🤷🏻‍♂️✓] [⏱️ 2s]
    ; wc -l ~/spotify-player-user-saved-albums-formatted.json
       33498 /Users/samforeman/spotify-player-user-saved-albums-formatted.json
    
  • Tail:

    [
      {
        "id": "3182SzntmtjKdPJooXxeGU",
        "release_date": "2014-09-23",
        "name": "Hell Can Wait",
        "artists": [
          {
            "id": "68kEuyFKyqrdQQLLsmiatm",
            "name": "Vince Staples"
          }
        ],
        "typ": "album",
        "added_at": 1412741252
      }
    ]
    
Originally created by @saforem2 on GitHub (Jul 14, 2025). Original GitHub issue: https://github.com/aome510/spotify-player/issues/773 **Describe the bug** The `Albums` section, for whatever reason, is _there_, but completely empty (?) **To Reproduce** Not _exactly_ sure. They all used to be there, and are still there in: {the desktop application, the iPhone application, the web UI}, ... **Expected behaviour** I expected to see my albums listed in the `Albums` section **Log and backtrace** <details closed><summary>Backtrace:</summary> </details> Log and backtrace of a run reproducing the bug to help debug the issue, which are usually located in `$HOME/.cache/spotify-player/`. Please refer to [this URL](https://github.com/aome510/spotify-player?tab=readme-ov-file#logging) for more details. **Screenshots** Same issue in: - <details closed><summary>Kitty:</summary> <img style="max-width: 100%;" width="779" height="498" alt="kitty" src="https://github.com/user-attachments/assets/d1034b9e-9fb6-4b42-a9ec-4e031deb4ee6" /> </details> - <details closed><summary>iTerm2:</summary> <img style="max-width: 100%;" width="895" height="618" alt="iTerm2" src="https://github.com/user-attachments/assets/1547974e-5022-421d-b239-efb383163cfa" /> - <details closed><summary>Ghostty:</summary> <img style="max-width: 100%;" width="890" height="612" alt="Ghostty" src="https://github.com/user-attachments/assets/7b08c0c7-a03b-421e-b1bd-4e795a46bb1a" /> <!--<img width="894" height="618" alt="Image" src="https://github.com/user-attachments/assets/bcb6abb0-fdde-4968-b75a-8d5ef0067d75" />--> **Environment** - OS: - Application version: - Application features: if applicable, provide [cargo features](https://doc.rust-lang.org/cargo/reference/features.html) used to build `spotify_player` **Additional context** Add any other context about the problem here. It seems `spotify_player` is able to _see_ my albums, i.e. if I: ```bash #[2025-07-12 @ 21:45:59][~/p/s/e][🌱 main][🗑📝🤷🏻‍♂️✓] ; ~/.cargo/bin/spotify_player get key user-saved-albums | jq . ``` - Head: ```json [ { "id": "5dRcUKPLdbgwL1ZhGW0sq4", "release_date": "2025-05-23", "name": "Formless", "artists": [ { "id": "2NBB9IvbvEIP7aOmENuCof", "name": "Revival Season" } ], "typ": "single", "added_at": 1749576013 } ] ``` - `...CLIPPED..`: ```bash #[2025-07-12 @ 21:54:00][~/p/p/bitchat][🌱 main][🗑📝🤷🏻‍♂️✓] [⏱️ 2s] ; wc -l ~/spotify-player-user-saved-albums-formatted.json 33498 /Users/samforeman/spotify-player-user-saved-albums-formatted.json ``` - Tail: ```json [ { "id": "3182SzntmtjKdPJooXxeGU", "release_date": "2014-09-23", "name": "Hell Can Wait", "artists": [ { "id": "68kEuyFKyqrdQQLLsmiatm", "name": "Vince Staples" } ], "typ": "album", "added_at": 1412741252 } ] ```
kerem 2026-03-14 14:39:08 +03:00
  • closed this issue
  • added the
    bug
    label
Author
Owner

@aome510 commented on GitHub (Jul 27, 2025):

The Albums section, for whatever reason, is there, but completely empty (?)

Does the log have any lines indicating fail to load saved albums or something? If everything works, the log should contain something as follows

2025-07-27T20:25:20.532128Z  INFO spotify_player::state::data: Loading SavedAlbums data from /Users/aome510/.cache/spotify-player/SavedAlbums_cache.json...
2025-07-27T20:25:20.532706Z  INFO spotify_player::state::data: Successfully loaded SavedAlbums data!
<!-- gh-comment-id:3124711123 --> @aome510 commented on GitHub (Jul 27, 2025): > The Albums section, for whatever reason, is there, but completely empty (?) Does the log have any lines indicating fail to load saved albums or something? If everything works, the log should contain something as follows ``` 2025-07-27T20:25:20.532128Z INFO spotify_player::state::data: Loading SavedAlbums data from /Users/aome510/.cache/spotify-player/SavedAlbums_cache.json... 2025-07-27T20:25:20.532706Z INFO spotify_player::state::data: Successfully loaded SavedAlbums data! ```
Author
Owner

@saforem2 commented on GitHub (Jul 31, 2025):

I'm not sure actually.

After trying again this week, it seems to have went away on its own 🤔 🤷🏻‍♂️

spotify_player --cache_folder= --config_folder=

seems to work now. Closing this. Thanks!!

Image
<!-- gh-comment-id:3140384849 --> @saforem2 commented on GitHub (Jul 31, 2025): I'm not sure actually. After trying again this week, it seems to have went away on its own 🤔 🤷🏻‍♂️ ```bash spotify_player --cache_folder= --config_folder= ``` seems to work now. Closing this. Thanks!! <img width="1824" height="1480" alt="Image" src="https://github.com/user-attachments/assets/ca1fa8c0-7b98-4297-b699-dda7748aa231" />
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/spotify-player#1397
No description provided.