mirror of
https://github.com/makeplane/plane.git
synced 2026-07-10 04:25:24 +02:00
When patching instance configuration values, the raw values from request.data were used directly without sanitization. This adds: - Whitespace stripping via str().strip() to prevent leading/trailing spaces from being stored - Explicit None handling so that null values become empty strings instead of the literal string "None"