Revert to sending the same data type as before

This commit is contained in:
Erik Johnston 2017-04-10 10:07:18 +01:00
parent f8434db549
commit 8c5f03cec7

View File

@ -447,10 +447,10 @@ class DeviceRow(BaseFederationRow, namedtuple("DeviceRow", (
@staticmethod @staticmethod
def from_data(data): def from_data(data):
return DeviceRow(destination=data) return DeviceRow(destination=data["destination"])
def to_data(self): def to_data(self):
return self.destination return {"destination": self.destination}
def add_to_buffer(self, buff): def add_to_buffer(self, buff):
buff.device_destinations.add(self.destination) buff.device_destinations.add(self.destination)