Skip to content

Fix clearing playlist comment in Subsonic API #4258

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged

Conversation

deluan
Copy link
Member

@deluan deluan commented Jun 24, 2025

Summary

Testing

  • make lint
  • make test

https://chatgpt.com/codex/tasks/task_b_685a757a4a08832e88ab8383a5740427

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Summary of Changes

Hello @deluan, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request resolves a functional bug in the Subsonic API's updatePlaylist endpoint, ensuring that users can now explicitly clear a playlist's comment by providing an empty comment parameter. The change involves a precise modification to the parameter parsing logic within the API handler and is thoroughly validated by newly introduced unit tests, improving the robustness and correctness of the API.

Highlights

  • API Fix: The UpdatePlaylist endpoint in the Subsonic API now correctly interprets an empty comment= query parameter as an instruction to clear the playlist's comment. Previously, an empty comment parameter would be ignored, preventing users from clearing existing comments via the API.
  • Test Coverage: New unit tests have been added in server/subsonic/playlists_test.go to specifically validate the behavior of the UpdatePlaylist handler. These tests cover scenarios where the comment parameter is provided as an empty string (to ensure clearing) and when it is entirely missing (to ensure no change).
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in issue comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

The pull request fixes a bug in the Subsonic API, allowing the clearing of playlist comments. Tests have been added to cover the new functionality and existing behavior.

Signed-off-by: Deluan <deluan@navidrome.org>
@deluan deluan marked this pull request as ready for review June 24, 2025 12:40
@deluan deluan requested a review from Copilot June 24, 2025 12:42
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR fixes the issue of clearing the playlist comment via the Subsonic API, ensuring that an empty "comment" parameter correctly clears the comment and adding tests for this behavior.

  • Updated request helper functions to support pointer-based parameter retrieval
  • Modified the Subsonic API playlist update to use the new helper functions
  • Added tests covering string and boolean parameter edge cases

Reviewed Changes

Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.

File Description
utils/req/req.go Added StringPtr and BoolPtr functions for parameter handling
utils/req/req_test.go Added tests for the new helper functions
server/subsonic/playlists.go Updated UpdatePlaylist to use pointer-based parameter retrieval
server/subsonic/playlists_test.go Added tests for clearing comments and public flag handling
Comments suppressed due to low confidence (1)

utils/req/req.go:38

  • Add function-level comments for StringPtr (and similarly for BoolPtr) to clarify their intended behavior and edge-case handling.
func (r *Values) StringPtr(param string) *string {

@deluan deluan merged commit aab3223 into master Jun 24, 2025
22 checks passed
@deluan deluan deleted the 0fu7hu-codex/locate-subsonic-api-comment-clearing-method branch June 24, 2025 12:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant