73 lines
2.6 KiB
Diff
73 lines
2.6 KiB
Diff
diff --git a/src/App.native.tsx b/src/App.native.tsx
|
|
index fb3008627..539ebc055 100644
|
|
--- a/src/App.native.tsx
|
|
+++ b/src/App.native.tsx
|
|
@@ -92,7 +92,7 @@ if (isAndroid) {
|
|
* Begin geolocation ASAP
|
|
*/
|
|
Geo.resolve()
|
|
-prefetchAgeAssuranceConfig()
|
|
+// // // prefetchAgeAssuranceConfig()
|
|
|
|
function InnerApp() {
|
|
const [isReady, setIsReady] = React.useState(false)
|
|
diff --git a/src/routes.ts b/src/routes.ts
|
|
index 1ed913bb2..c80340edb 100644
|
|
--- a/src/routes.ts
|
|
+++ b/src/routes.ts
|
|
@@ -71,8 +71,8 @@ export const router = new Router<AllNavigatableRoutes>({
|
|
MiscellaneousNotificationSettings: '/settings/notifications/miscellaneous',
|
|
// support
|
|
Support: '/support',
|
|
- PrivacyPolicy: '/support/privacy',
|
|
- TermsOfService: '/support/tos',
|
|
+ PrivacyPolicy: 'https://syu.is/about/support/privacy-policy',
|
|
+ TermsOfService: 'https://syu.is/about/support/tos',
|
|
CommunityGuidelines: '/support/community-guidelines',
|
|
CopyrightPolicy: '/support/copyright',
|
|
// hashtags
|
|
diff --git a/src/state/session/agent.ts b/src/state/session/agent.ts
|
|
index 5c8ce3b97..ee85beb08 100644
|
|
--- a/src/state/session/agent.ts
|
|
+++ b/src/state/session/agent.ts
|
|
@@ -47,7 +47,8 @@ export function createPublicAgent() {
|
|
configureModerationForGuest() // Side effect but only relevant for tests
|
|
|
|
const agent = new BskyAppAgent({service: PUBLIC_BSKY_SERVICE})
|
|
- agent.configureProxy(BLUESKY_PROXY_HEADER.get())
|
|
+ // Disable proxy for self-hosted environments
|
|
+ // agent.configureProxy(BLUESKY_PROXY_HEADER.get())
|
|
return agent
|
|
}
|
|
|
|
@@ -88,7 +89,8 @@ export async function createAgentAndResume(
|
|
// after session is attached
|
|
const aa = prefetchAgeAssuranceData({agent})
|
|
|
|
- agent.configureProxy(BLUESKY_PROXY_HEADER.get())
|
|
+ // Disable proxy for self-hosted environments
|
|
+ // agent.configureProxy(BLUESKY_PROXY_HEADER.get())
|
|
|
|
return agent.prepare({
|
|
resolvers: [gates, moderation, aa],
|
|
@@ -127,7 +129,8 @@ export async function createAgentAndLogin(
|
|
const moderation = configureModerationForAccount(agent, account)
|
|
const aa = prefetchAgeAssuranceData({agent})
|
|
|
|
- agent.configureProxy(BLUESKY_PROXY_HEADER.get())
|
|
+ // Disable proxy for self-hosted environments
|
|
+ // agent.configureProxy(BLUESKY_PROXY_HEADER.get())
|
|
|
|
return agent.prepare({
|
|
resolvers: [gates, moderation, aa],
|
|
@@ -299,7 +302,8 @@ export async function createAgentAndCreateAccount(
|
|
logger.error(e, {message: `session: failed snoozeEmailConfirmationPrompt`})
|
|
}
|
|
|
|
- agent.configureProxy(BLUESKY_PROXY_HEADER.get())
|
|
+ // Disable proxy for self-hosted environments
|
|
+ // agent.configureProxy(BLUESKY_PROXY_HEADER.get())
|
|
|
|
return agent.prepare({
|
|
resolvers: [gates, moderation, aa],
|