fix(nests): point default moq.nostrnests.com URLs at port 4443

The public nostrnests deployment serves moq-auth + moq-relay on
:4443; :443 is not the live endpoint. With the old defaults a
freshly-created room could never mint a JWT, so the room screen
parked on "Reconnecting" forever and the room never showed up in
the nostrnests UI.
This commit is contained in:
Claude
2026-04-28 20:10:35 +00:00
parent 629915dc6c
commit 412b2a285c
2 changed files with 3 additions and 3 deletions
@@ -250,5 +250,5 @@ private fun NestsServerEntry(
*/
val DEFAULT_NESTS_SERVERS: List<NestsServer> =
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
* moq-auth / moq-relay pair.
*/
const val DEFAULT_SERVICE_URL: String = "https://moq.nostrnests.com"
const val DEFAULT_ENDPOINT_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:4443"
}
}