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

chore: Support new unifiedpush gateway discovery

Closes #474

See merge request famedly/fluffychat!468
This commit is contained in:
Krille Fear 2021-08-01 13:06:18 +00:00
commit 79673ed757
1 changed files with 3 additions and 1 deletions

View File

@ -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) {