Skip to content

Commit

Permalink
remove Encrypt route
Browse files Browse the repository at this point in the history
  • Loading branch information
vynxc committed Jan 12, 2024
1 parent 49c662e commit 6461892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion M3U8Proxy/Controllers/M3U8.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public async Task<IActionResult> GetM3U8Spoofed(string encryptedUrl, string? hea
var url = Decrypt(encryptedUrl);
return await GetM3U8(url, headers,forcedHeadersProxy,true);
}
[Route("/encrypt/{data}")]

public string Encrypt(string data)
{
return Uri.EscapeDataString(AES.Encrypt(data));
Expand Down

0 comments on commit 6461892

Please sign in to comment.