mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-03-15 02:38:59 +03:00
Fix broken bug report when no push gateway is set
Change-Id: Ie06e3ec56c6ce5f7700fbe186407942849eb504a
This commit is contained in:
parent
3ca6676629
commit
381010df70
1 changed files with 1 additions and 1 deletions
|
@ -280,7 +280,7 @@ class BugReporter @Inject constructor(
|
|||
// UnifiedPush
|
||||
// Only include the UP endpoint base url to exclude private user tokens in the path or parameters
|
||||
builder.addFormDataPart("unifiedpush_endpoint", UPHelper.getPrivacyFriendlyUpEndpoint(context).toString())
|
||||
.addFormDataPart("unifiedpush_gateway", UPHelper.getPushGateway(context))
|
||||
.addFormDataPart("unifiedpush_gateway", UPHelper.getPushGateway(context).toString())
|
||||
.addFormDataPart("unifiedpush_distributor_exists", UPHelper.distributorExists(context).toString())
|
||||
.addFormDataPart("unifiedpush_is_embedded_distributor", UPHelper.isEmbeddedDistributor(context).toString())
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue