Merge branch 'soru/up-update' into 'main'

chore: Support new unifiedpush gateway discovery

Closes #474

See merge request famedly/fluffychat!468
onboarding
Krille Fear 4 years ago
commit 87e271bfd0

@ -346,7 +346,9 @@ class BackgroundPush {
.first; .first;
final res = final res =
json.decode(utf8.decode((await http.get(Uri.parse(url))).bodyBytes)); json.decode(utf8.decode((await http.get(Uri.parse(url))).bodyBytes));
if (res['gateway'] == 'matrix') { if (res['gateway'] == 'matrix' ||
(res['unifiedpush'] is Map &&
res['unifiedpush']['gateway'] == 'matrix')) {
endpoint = url; endpoint = url;
} }
} catch (e) { } catch (e) {

Loading…
Cancel
Save