Merge pull request #2633 from vitorpamplona/claude/fix-amethyst-nest-reconnecting-T8DSP

Update MOQ relay URLs to include port 4443
This commit is contained in:
Vitor Pamplona
2026-04-28 18:04:36 -04:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
@@ -250,5 +250,5 @@ private fun NestsServerEntry(
*/ */
val DEFAULT_NESTS_SERVERS: List<NestsServer> = val DEFAULT_NESTS_SERVERS: List<NestsServer> =
listOf( listOf(
NestsServer(name = "nostrnests.com", baseUrl = "https://moq.nostrnests.com"), NestsServer(name = "nostrnests.com", baseUrl = "https://moq.nostrnests.com:4443"),
) )
@@ -356,7 +356,7 @@ class CreateNestViewModel : ViewModel() {
* room here. Users can edit either field to point at their own * room here. Users can edit either field to point at their own
* moq-auth / moq-relay pair. * moq-auth / moq-relay pair.
*/ */
const val DEFAULT_SERVICE_URL: String = "https://moq.nostrnests.com" const val DEFAULT_SERVICE_URL: String = "https://moq.nostrnests.com:4443"
const val DEFAULT_ENDPOINT_URL: String = "https://moq.nostrnests.com" const val DEFAULT_ENDPOINT_URL: String = "https://moq.nostrnests.com:4443"
} }
} }