Skip to content

Commit

Permalink
Fix permalink base URL
Browse files Browse the repository at this point in the history
  • Loading branch information
yostyle committed Jan 30, 2024
1 parent d9da6c9 commit 37c95f8
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,11 @@ import javax.inject.Singleton
networkInterceptors = listOfNotNull(
flipperProxy.networkInterceptor(),
),
// Tchap: Use custom permalink prefix
clientPermalinkBaseUrl = context.getString(R.string.permalink_prefix),
metricPlugins = vectorPlugins.plugins(),
cryptoAnalyticsPlugin = vectorPlugins.cryptoMetricPlugin,
customEventTypesProvider = vectorCustomEventTypesProvider,
clientPermalinkBaseUrl = mdmService.getData(MdmData.PermalinkBaseUrl),
// Tchap: Use custom permalink prefix
clientPermalinkBaseUrl = mdmService.getData(MdmData.PermalinkBaseUrl) ?: context.getString(R.string.permalink_prefix),
syncConfig = SyncConfig(
syncFilterParams = SyncFilterParams(lazyLoadMembersForStateEvents = true, useThreadNotifications = true)
)
Expand Down

0 comments on commit 37c95f8

Please sign in to comment.