mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 15:00:51 +01:00
modules/client/initialsync: Remove unnecessary unquote() for object.
This commit is contained in:
parent
a628f88206
commit
7bb187eb17
1 changed files with 2 additions and 2 deletions
|
@ -285,7 +285,7 @@ initialsync_account_data(client &client,
|
||||||
{
|
{
|
||||||
json::stack::member member
|
json::stack::member member
|
||||||
{
|
{
|
||||||
object, "type", unquote(at<"state_key"_>(event))
|
object, "type", at<"state_key"_>(event)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -293,7 +293,7 @@ initialsync_account_data(client &client,
|
||||||
{
|
{
|
||||||
json::stack::member member
|
json::stack::member member
|
||||||
{
|
{
|
||||||
object, "content", unquote(at<"content"_>(event))
|
object, "content", at<"content"_>(event)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue