diff --git a/app/Server/Service/ServerStartup.cs b/app/Server/Service/ServerStartup.cs index 873259a..9ba1172 100644 --- a/app/Server/Service/ServerStartup.cs +++ b/app/Server/Service/ServerStartup.cs @@ -16,7 +16,7 @@ namespace DHT.Server.Service { services.AddCors(static cors => { cors.AddDefaultPolicy(static builder => { - builder.WithOrigins("https://discord.com", "https://discordapp.com").AllowCredentials().AllowAnyMethod().AllowAnyHeader(); + builder.WithOrigins("https://discord.com", "https://discordapp.com", "https://ptb.discord.com", "https://canary.discord.com").AllowCredentials().AllowAnyMethod().AllowAnyHeader(); }); }); }