MCPcopy Create free account
hub / github.com/TheSmallHanCat/flow2api / _merge_request_fingerprint

Method _merge_request_fingerprint

src/services/flow_client.py:4179–4194  ·  view source on GitHub ↗
(self, patch: Optional[Dict[str, Any]])

Source from the content-addressed store, hash-verified

4177 }
4178
4179 def _merge_request_fingerprint(self, patch: Optional[Dict[str, Any]]):
4180 if not isinstance(patch, dict) or not patch:
4181 return
4182 current = self.get_request_fingerprint() or {}
4183 merged = dict(current)
4184 for key, value in patch.items():
4185 if value is None:
4186 continue
4187 if isinstance(value, str):
4188 normalized = value.strip()
4189 if not normalized:
4190 continue
4191 merged[key] = normalized
4192 else:
4193 merged[key] = value
4194 self._set_request_fingerprint(merged if merged else None)
4195
4196 async def _notify_browser_captcha_error(
4197 self,

Callers 2

_get_recaptcha_tokenMethod · 0.95

Calls 2

Tested by

no test coverage detected