matrix-org / matrix-android-sdk

The Matrix SDK for Android - DEPRECATED
Apache License 2.0
371 stars 132 forks source link

Room creation_content always empty when creating a Room #540

Open ChristianJGarrido opened 4 years ago

ChristianJGarrido commented 4 years ago

I believe this is because the creation_content is of type Object when it should be of type Serializable in CreateRoomParams.java

public Object creation_content;

to

public Serializable creation_content;