Wrong /query request (#1444)

This commit is contained in:
Benoit Marty 2020-06-04 11:59:04 +02:00
parent 240f1f51b9
commit f28889284d
3 changed files with 4 additions and 3 deletions

View File

@ -13,6 +13,7 @@ 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)
- Reply composer overlay stays on screen too long after send (#1169) - Reply composer overlay stays on screen too long after send (#1169)
- Wrong /query request (#1444)
Translations 🗣: Translations 🗣:
- -

View File

@ -36,7 +36,7 @@ internal data class KeysQueryBody(
* A map from user ID, to a list of device IDs, or to an empty list to indicate all devices for the corresponding user. * A map from user ID, to a list of device IDs, or to an empty list to indicate all devices for the corresponding user.
*/ */
@Json(name = "device_keys") @Json(name = "device_keys")
val deviceKeys: Map<String, Any>, val deviceKeys: Map<String, List<String>>,
/** /**
* If the client is fetching keys as a result of a device update received in a sync request, this should be the 'since' token * If the client is fetching keys as a result of a device update received in a sync request, this should be the 'since' token

View File

@ -27,7 +27,7 @@ import javax.inject.Inject
internal interface DownloadKeysForUsersTask : Task<DownloadKeysForUsersTask.Params, KeysQueryResponse> { internal interface DownloadKeysForUsersTask : Task<DownloadKeysForUsersTask.Params, KeysQueryResponse> {
data class Params( data class Params(
// the list of users to get keys for. // the list of users to get keys for.
val userIds: List<String>?, val userIds: List<String>,
// the up-to token // the up-to token
val token: String? val token: String?
) )
@ -39,7 +39,7 @@ internal class DefaultDownloadKeysForUsers @Inject constructor(
) : DownloadKeysForUsersTask { ) : DownloadKeysForUsersTask {
override suspend fun execute(params: DownloadKeysForUsersTask.Params): KeysQueryResponse { override suspend fun execute(params: DownloadKeysForUsersTask.Params): KeysQueryResponse {
val downloadQuery = params.userIds?.associateWith { emptyMap<String, Any>() }.orEmpty() val downloadQuery = params.userIds.associateWith { emptyList<String>() }
val body = KeysQueryBody( val body = KeysQueryBody(
deviceKeys = downloadQuery, deviceKeys = downloadQuery,