[CHANGE] Linked decipher to video implementation

This commit is contained in:
max
2025-10-23 20:08:02 +02:00
parent e87e1c57f9
commit 972af513f0
3 changed files with 40 additions and 3 deletions

View File

@@ -31,8 +31,13 @@ public partial class CipherDecoder
return decoder;
}
public string Decipher(string signatureCipher)
public string Decipher(string? signatureCipher)
{
if (string.IsNullOrEmpty(signatureCipher))
{
return "";
}
var urlBuilder = new StringBuilder();
var indexStart = signatureCipher.IndexOf("s=", StringComparison.Ordinal);