We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dce0324 commit c335796Copy full SHA for c335796
server/recceiver/cfstore.py
@@ -85,7 +85,7 @@ class CFProperty:
85
86
def as_dict(self) -> Dict[str, str]:
87
"""Convert to dictionary for Channelfinder API."""
88
- return {"name": self.name, "owner": self.owner, "value": str(self.value)}
+ return {"name": self.name, "owner": self.owner, "value": self.value or ""}
89
90
@staticmethod
91
def from_channelfinder_dict(prop_dict: Dict[str, str]) -> "CFProperty":
0 commit comments