From f9fd0ebc698d663fdb49e03689058083dd4050d1 Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Wed, 10 Feb 2021 07:04:43 +0100 Subject: [PATCH] Allow restreams by default --- Pages/Register.cshtml.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Pages/Register.cshtml.cs b/Pages/Register.cshtml.cs index 7286af0..7bf0948 100644 --- a/Pages/Register.cshtml.cs +++ b/Pages/Register.cshtml.cs @@ -31,7 +31,8 @@ namespace RTMPDash.Pages { Password = Request.Form["pass"].ToString().Sha256(), StreamKey = Guid.NewGuid().ToString(), PronounSubject = "they", - PronounPossessive = "their" + PronounPossessive = "their", + AllowRestream = true }; db.Insert(user);