Commit efc3b5a
fix(hybridcloud): Handle null meta in RPC endpoint
request.data.get("meta", {}) returns None when the payload contains
"meta": null, since the default only applies for missing keys. Use
`or {}` to handle both missing and null values, preventing an
AttributeError on the subsequent .get() call.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>1 parent d25c815 commit efc3b5a
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
67 | | - | |
| 67 | + | |
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
| |||
0 commit comments