This commit is contained in:
jrconlin 2019-03-28 14:50:51 -07:00
Родитель e9db99c16f
Коммит 06703aca40
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 91B7F708D9FC4D84
2 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -4,6 +4,13 @@
[Full Changelog](https://github.com/mozilla/application-services/compare/v0.22.1...master)
## Push
### Breaking changes
- the `PushManager` argument `socket_protocol` is now `http_protocol`
to correctly map its role. `socket_protocol` is reserved.
# v0.22.1 (_2019-03-27_)
[Full Changelog](https://github.com/mozilla/application-services/compare/v0.22.0...v0.22.1)

Просмотреть файл

@ -142,7 +142,7 @@ pub extern "C" fn push_verify_connection(handle: u64, error: &mut ExternError) -
MANAGER.call_with_result_mut(error, handle, |mgr| -> Result<_> {
if !mgr.verify_connection()? {
let new_endpoints = mgr.regenerate_endpoints()?;
if new_endpoints.is_empty() {
if !new_endpoints.is_empty() {
return serde_json::to_string(&new_endpoints).map_err(|e| {
push_errors::ErrorKind::TranscodingError(format!("{:?}", e)).into()
});