It is possible to deepLinks having multiple repeated query parameters encoded in it. This usually means that this query parameter should be treated as a List instead of a single value. The previous implementation was choosing one of the values provided in this case and discarding the rest.
This change implements a backwards-compatible change, where if the provided DeepLink contains the representation of a list QueryParamter, it will be returned as such. If the query parameter is not repeated, it will be returned directly (and not within a single element list)
It is possible to deepLinks having multiple repeated query parameters encoded in it. This usually means that this query parameter should be treated as a List instead of a single value. The previous implementation was choosing one of the values provided in this case and discarding the rest.
This change implements a backwards-compatible change, where if the provided DeepLink contains the representation of a list QueryParamter, it will be returned as such. If the query parameter is not repeated, it will be returned directly (and not within a single element list)