This commit is contained in:
Sebastian 2026-02-24 20:15:42 +01:00
parent 2a75d49da8
commit cadaddca1f
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
lan.vbytes.se {
anmalan.vbytes.se {
reverse_proxy localhost:5000
log {

View file

@ -37,7 +37,7 @@ public class ParticipantController(IVbytesParticipantRelayService relayService)
var result = await _relayService.RegisterParticipantAsync(participant, cancellationToken);
if (result.Success)
if (result.Success && !result.Message.Contains("401"))
{
return Ok();
}

View file

@ -44,7 +44,7 @@ public class VolunteerController(IVbytesVolunteerRelayService relayService) : Co
var result = await _relayService.RegisterVolunteerAsync(volunteer, cancellationToken);
if (result.Success)
if (result.Success && !result.Message.Contains("401"))
{
return Ok();
}