在客户端更新了conversation的attribute自定义属性,数据库里查询到成功更新了,但客户端使用query查询到的对话数据一直是旧的。请问flutter的SDK怎样获取最新的对话属性呢?有没有fetch的方法呢?

但客户端使用query查询到的对话数据一直是旧的。

您好,请问使用哪个版本的 SDK,具体怎么查询的?

您好,我使用flutter的即时通讯SDK:leancloud_official_plugin: ^1.0.0-beta.9

更新对话属性使用的是:
_conversation.updateInfo(attributes: {
'xxx': xxx,
});


查询对话使用的是:
List conversations;
ConversationQuery query = _me.conversationQuery();
query.whereEqualTo('objectId', widget.conversationId);
conversations = await query.find();
_conversation = conversations.first;


经测试,iOS设备可以查询到最新的对话属性,而安卓设备却不能。