Make Credentials.homeServer optional because it is deprecated (#1443)

It is never used currently in RiotX, but if homeserver does not sent it, it would crash.
This commit is contained in:
Benoit Marty 2020-06-04 11:41:32 +02:00
parent c3d8916802
commit 8b7e5e527a
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@ Improvements 🙌:
Bugfix 🐛: Bugfix 🐛:
- Switch theme is not fully taken into account without restarting the app - Switch theme is not fully taken into account without restarting the app
- Temporary fix to show error when user is creating an account on matrix.org with userId containing only digits (#1410) - Temporary fix to show error when user is creating an account on matrix.org with userId containing only digits (#1410)
- Make Credentials.homeServer optional because it is deprecated (#1443)
Translations 🗣: Translations 🗣:
- -

View File

@ -45,7 +45,7 @@ data class Credentials(
* @Deprecated. Clients should extract the server_name from user_id (by splitting at the first colon) * @Deprecated. Clients should extract the server_name from user_id (by splitting at the first colon)
* if they require it. Note also that homeserver is not spelt this way. * if they require it. Note also that homeserver is not spelt this way.
*/ */
@Json(name = "home_server") val homeServer: String, @Json(name = "home_server") val homeServer: String?,
/** /**
* ID of the logged-in device. Will be the same as the corresponding parameter in the request, if one was specified. * ID of the logged-in device. Will be the same as the corresponding parameter in the request, if one was specified.
*/ */