From f2dd3d8318f176bacfc33828391120d86c7449de Mon Sep 17 00:00:00 2001 From: Brent Schroeter Date: Thu, 11 Dec 2025 18:09:34 +0000 Subject: [PATCH] add gh issue reference for serde_html_form bug --- phono-server/src/presentation_form.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/phono-server/src/presentation_form.rs b/phono-server/src/presentation_form.rs index f5edce7..153bc36 100644 --- a/phono-server/src/presentation_form.rs +++ b/phono-server/src/presentation_form.rs @@ -14,6 +14,7 @@ use crate::errors::AppError; /// `#[serde(flatten)]`, Serde's buffering strategy causes `flatten` to break /// deserialization of `Vec<_>` fields when provided with a sequence of length /// == 1. `#[serde(flatten)]` should be avoided. +/// (Refer to: https://github.com/jplatte/serde_html_form/issues/25.) #[derive(Clone, Debug, Deserialize)] pub(crate) struct PresentationForm { pub(crate) presentation_tag: String,